Skip to content

Commit

Permalink
caif_usb: fix spelling mistake "to" -> "too"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a pr_warn message. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Colin Ian King authored and davem330 committed Jan 24, 2020
1 parent 971485a commit 43d8877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/caif/caif_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static int cfusbl_transmit(struct cflayer *layr, struct cfpkt *pkt)
hpad = (info->hdr_len + CFUSB_PAD_DESCR_SZ) & (CFUSB_ALIGNMENT - 1);

if (skb_headroom(skb) < ETH_HLEN + CFUSB_PAD_DESCR_SZ + hpad) {
pr_warn("Headroom to small\n");
pr_warn("Headroom too small\n");
kfree_skb(skb);
return -EIO;
}
Expand Down

0 comments on commit 43d8877

Please sign in to comment.