diff options
author | CHANG FU CHIAO <zector1030@gmail.com> | 2015-07-15 15:32:21 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-07-16 10:15:14 -0700 |
commit | c8011d90c68d10d67b797e0704c16697bba683a1 (patch) | |
tree | a3c8a0359a02da90eeaac14e608e97eac910a161 | |
parent | 315c928ba99af23dd25ac664b7c02828cf047f19 (diff) | |
download | linux-c8011d90c68d10d67b797e0704c16697bba683a1.tar.gz linux-c8011d90c68d10d67b797e0704c16697bba683a1.tar.bz2 linux-c8011d90c68d10d67b797e0704c16697bba683a1.zip |
staging: ft1000: ft1000-usb: remove unnecessary out of memory warning
fixes "Possible unnecessary 'out of memory' message"
Signed-off-by: CHANG FU CHIAO <zector1030@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ft1000/ft1000-usb/ft1000_hw.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c index e6b5976a09e3..96209703ba25 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c @@ -842,7 +842,6 @@ static int ft1000_copy_up_pkt(struct urb *urb) skb = dev_alloc_skb(len + 12 + 2); if (skb == NULL) { - pr_debug("No Network buffers available\n"); info->stats.rx_errors++; ft1000_submit_rx_urb(info); return -1; |