Commit b79f3f68 authored by Dileep Sankhla's avatar Dileep Sankhla Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: Remove unnecessary 'out of memory' message



This patch removes the unnecessary out of memory message fixing the
following checkpatch.pl warning in usbpipe.c:
WARNING: Possible unnecessary 'out of memory' message

Signed-off-by: default avatarDileep Sankhla <sankhla.dileep96@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 77ab45a4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -194,9 +194,6 @@ static void vnt_submit_rx_urb_complete(struct urb *urb)
		if (vnt_rx_data(priv, rcb, urb->actual_length)) {
			rcb->skb = dev_alloc_skb(priv->rx_buf_sz);
			if (!rcb->skb) {
				dev_dbg(&priv->usb->dev,
					"Failed to re-alloc rx skb\n");

				rcb->in_use = false;
				return;
			}