Messages in this thread |  | | Date | Mon, 17 Dec 2012 17:13:45 +0300 | From | Dan Carpenter <> | Subject | Re: [PATCH 3/3] wlan-ng/prism2mgmt.c Replace printk(...) with netdev_warn, netdev_err |
| |
On Mon, Dec 17, 2012 at 02:38:03PM +0100, Sebastian Wankerl wrote: > @@ -261,15 +265,17 @@ int prism2mgmt_scan(wlandevice_t *wlandev, void *msgp) > HFA384x_RID_CREATEIBSS, > HFA384x_CREATEIBSS_JOINCREATEIBSS); > if (result) { > - printk(KERN_ERR "Failed to set CREATEIBSS.\n"); > + netdev_err(wlandev->netdev, > + "Failed to set CREATEIBSS.\n"); > msg->resultcode.data = > P80211ENUM_resultcode_implementation_failure; > goto exit; > } > result = hfa384x_drvr_enable(hw, 0); > if (result) { > - printk(KERN_ERR "drvr_enable(0) failed. " > - "result=%d\n", result); > + netdev_err(wlandev->netdev, > + "drvr_enable(0) failed. " "result=%d\n", ^^^
Delete this.
regards, dan carpenter
|  |