From: Colin Ian King Date: Thu, 23 Jan 2020 00:45:55 +0000 (+0000) Subject: caif_usb: fix spelling mistake "to" -> "too" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=43d88774d138496c88920e2bb012f5fd098ee6ad;p=linux.git caif_usb: fix spelling mistake "to" -> "too" There is a spelling mistake in a pr_warn message. Fix it. Signed-off-by: Colin Ian King Signed-off-by: David S. Miller --- diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c index 76bd67891fb39..a0116b9503d9d 100644 --- a/net/caif/caif_usb.c +++ b/net/caif/caif_usb.c @@ -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; }