Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134993
b: refs/heads/master
c: 347707b
h: refs/heads/master
i:
  134991: f8a6951
v: v3
  • Loading branch information
Kay Sievers authored and David S. Miller committed Mar 2, 2009
1 parent b9abef3 commit 0682d97
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8987691a4aa6622a1b58bb12c56abaf3d2098fad
refs/heads/master: 347707baa77d273d79258303e00200d40cf3b323
2 changes: 1 addition & 1 deletion trunk/drivers/net/wimax/i2400m/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ int i2400m_setup(struct i2400m *i2400m, enum i2400m_bri bm_flags)
d_fnstart(3, dev, "(i2400m %p)\n", i2400m);

snprintf(wimax_dev->name, sizeof(wimax_dev->name),
"i2400m-%s:%s", dev->bus->name, dev->bus_id);
"i2400m-%s:%s", dev->bus->name, dev_name(dev));

i2400m->bm_cmd_buf = kzalloc(I2400M_BM_CMD_BUF_SIZE, GFP_KERNEL);
if (i2400m->bm_cmd_buf == NULL) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wimax/i2400m/usb-notif.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ int i2400mu_notification_grok(struct i2400mu *i2400mu, const void *buf,
dev_err(dev, "HW BUG? Unknown/unexpected data in notification "
"message (%zu bytes)\n", buf_len);
snprintf(prefix, sizeof(prefix), "%s %s: ",
dev_driver_string(dev) , dev->bus_id);
dev_driver_string(dev), dev_name(dev));
if (buf_len > 64) {
print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET,
8, 4, buf, 64, 0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/wimax/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void __d_head(char *head, size_t head_size,
WARN_ON(1);
} else
snprintf(head, head_size, "%s %s: ",
dev_driver_string(dev), dev->bus_id);
dev_driver_string(dev), dev_name(dev));
}


Expand Down

0 comments on commit 0682d97

Please sign in to comment.