diff options
| author | David S. Miller <davem@davemloft.net> | 2022-03-21 13:26:38 +0000 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2022-03-21 13:26:38 +0000 |
| commit | e7dc00f3d6c323709c5515a7a3d05062a0034b83 (patch) | |
| tree | 5dd0c55e009eb9a1e55bded450fea1e2ea734243 /drivers/net | |
| parent | a62551c988d2e948cb0a227ba48419fee495b028 (diff) | |
| parent | dc97870682e19fb5260281e9b7636e796869075e (diff) | |
| download | linux-next-e7dc00f3d6c323709c5515a7a3d05062a0034b83.tar.gz linux-next-e7dc00f3d6c323709c5515a7a3d05062a0034b83.zip | |
Merge branch 'too-short'
Tong Zhang says:
====================
fix typos: "to short" -> "too short"
doing some code review and I found out there are a couple of places
where "too short" is misspelled as "to short".
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/ethernet/i825xx/sun3_82586.h | 2 | ||||
| -rw-r--r-- | drivers/net/wireless/ath/ar5523/ar5523.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/i825xx/sun3_82586.h b/drivers/net/ethernet/i825xx/sun3_82586.h index 79aef681ac85..eb4138036b97 100644 --- a/drivers/net/ethernet/i825xx/sun3_82586.h +++ b/drivers/net/ethernet/i825xx/sun3_82586.h @@ -150,7 +150,7 @@ struct rfd_struct #define RFD_ERR_RNR 0x02 /* status: receiver out of resources */ #define RFD_ERR_OVR 0x01 /* DMA Overrun! */ -#define RFD_ERR_FTS 0x0080 /* Frame to short */ +#define RFD_ERR_FTS 0x0080 /* Frame too short */ #define RFD_ERR_NEOP 0x0040 /* No EOP flag (for bitstuffing only) */ #define RFD_ERR_TRUN 0x0020 /* (82596 only/SF mode) indicates truncated frame */ #define RFD_MATCHADD 0x0002 /* status: Destinationaddress !matches IA (only 82596) */ diff --git a/drivers/net/wireless/ath/ar5523/ar5523.c b/drivers/net/wireless/ath/ar5523/ar5523.c index 141c1b5a7b1f..9cabd342d156 100644 --- a/drivers/net/wireless/ath/ar5523/ar5523.c +++ b/drivers/net/wireless/ath/ar5523/ar5523.c @@ -104,7 +104,7 @@ static void ar5523_cmd_rx_cb(struct urb *urb) } if (urb->actual_length < sizeof(struct ar5523_cmd_hdr)) { - ar5523_err(ar, "RX USB to short.\n"); + ar5523_err(ar, "RX USB too short.\n"); goto skip; } |
