diff options
author | Joe Perches <joe@perches.com> | 2007-11-19 20:48:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:03:59 -0500 |
commit | 2450022afa9f140464c934ecb28c45583335672a (patch) | |
tree | d368f90c14e2fb7b63ce2ece6c03a8679e3ee72c /drivers/net/3c507.c | |
parent | 60403fdadabdf1bb1a0f0e2a482860be1c45904f (diff) |
drivers/net: Add missing "space"
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/3c507.c')
-rw-r--r-- | drivers/net/3c507.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c507.c b/drivers/net/3c507.c index 964d31ac9449..f90ede931489 100644 --- a/drivers/net/3c507.c +++ b/drivers/net/3c507.c | |||
@@ -747,7 +747,7 @@ static void init_82586_mem(struct net_device *dev) | |||
747 | int boguscnt = 50; | 747 | int boguscnt = 50; |
748 | while (readw(shmem+iSCB_STATUS) == 0) | 748 | while (readw(shmem+iSCB_STATUS) == 0) |
749 | if (--boguscnt == 0) { | 749 | if (--boguscnt == 0) { |
750 | printk("%s: i82586 initialization timed out with status %04x," | 750 | printk("%s: i82586 initialization timed out with status %04x, " |
751 | "cmd %04x.\n", dev->name, | 751 | "cmd %04x.\n", dev->name, |
752 | readw(shmem+iSCB_STATUS), readw(shmem+iSCB_CMD)); | 752 | readw(shmem+iSCB_STATUS), readw(shmem+iSCB_CMD)); |
753 | break; | 753 | break; |
@@ -832,7 +832,7 @@ static void el16_rx(struct net_device *dev) | |||
832 | 832 | ||
833 | if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22 | 833 | if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22 |
834 | || (pkt_len & 0xC000) != 0xC000) { | 834 | || (pkt_len & 0xC000) != 0xC000) { |
835 | printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x" | 835 | printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x " |
836 | "next %04x data-buf @%04x %04x.\n", dev->name, rx_head, | 836 | "next %04x data-buf @%04x %04x.\n", dev->name, rx_head, |
837 | frame_status, rfd_cmd, next_rx_frame, data_buffer_addr, | 837 | frame_status, rfd_cmd, next_rx_frame, data_buffer_addr, |
838 | pkt_len); | 838 | pkt_len); |