Return-path: Received: from eusmtp01.atmel.com ([212.144.249.242]:47460 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933526AbcBACOC (ORCPT ); Sun, 31 Jan 2016 21:14:02 -0500 From: Leo Kim To: CC: , , , , , , , , Subject: [PATCH 3/7] staging: wilc1000: wilc_wlan.c: replaces PRINT_ER with netdev_err Date: Mon, 1 Feb 2016 11:11:21 +0900 Message-ID: <1454292685-12294-3-git-send-email-leo.kim@atmel.com> (sfid-20160201_031408_427117_FC32DEAD) In-Reply-To: <1454292685-12294-1-git-send-email-leo.kim@atmel.com> References: <1454292685-12294-1-git-send-email-leo.kim@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: This patches replaces PRINT_ER with netdev_err. Removes unnecessary debug logs as well. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index 1efd61a..c19ae00 100644 --- a/drivers/staging/wilc1000/wilc_wlan.c +++ b/drivers/staging/wilc1000/wilc_wlan.c @@ -1496,7 +1496,6 @@ int wilc_wlan_init(struct net_device *dev) if (!wilc->tx_buffer) { ret = -ENOBUFS; - PRINT_ER("Can't allocate Tx Buffer"); goto _fail_; } @@ -1505,7 +1504,6 @@ int wilc_wlan_init(struct net_device *dev) if (!wilc->rx_buffer) { ret = -ENOBUFS; - PRINT_ER("Can't allocate Rx Buffer"); goto _fail_; } -- 1.9.1