Commit 43d88774 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

caif_usb: fix spelling mistake "to" -> "too"



There is a spelling mistake in a pr_warn message. Fix it.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 971485a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}