mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 22:31:32 +00:00
Staging: winbond: Fix printk() should include KERN_ facility level in wb35rx.c
Fix checkpatch.pl issues with printk() should include KERN_ facility level in wb35rx.c Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
256a38b048
commit
74a1fb6748
@ -261,7 +261,7 @@ static void Wb35Rx(struct ieee80211_hw *hw)
|
||||
|
||||
pWb35Rx->pDRx = kzalloc(MAX_USB_RX_BUFFER, GFP_ATOMIC);
|
||||
if (!pWb35Rx->pDRx) {
|
||||
printk("w35und: Rx memory alloc failed\n");
|
||||
dev_info(&hw->wiphy->dev, "w35und: Rx memory alloc failed\n");
|
||||
goto error;
|
||||
}
|
||||
pRxBufferAddress = pWb35Rx->pDRx;
|
||||
@ -276,7 +276,7 @@ static void Wb35Rx(struct ieee80211_hw *hw)
|
||||
retv = usb_submit_urb(urb, GFP_ATOMIC);
|
||||
|
||||
if (retv != 0) {
|
||||
printk("Rx URB sending error\n");
|
||||
dev_info(&hw->wiphy->dev, "Rx URB sending error\n");
|
||||
goto error;
|
||||
}
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user