Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: wlan-ng: hfa384x_usb.c Fixed too long code line warnings.

Fixed checkpatch warning "line over 80 characters" in
wlan-ng/hfa384x_usb.c file.

Signed-off-by: Yan Laijun <yan.laijun@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Yan Laijun and committed by
Greg Kroah-Hartman
e895f00a e5851dc0

+2 -1
+2 -1
drivers/staging/wlan-ng/hfa384x_usb.c
··· 3037 3037 { 3038 3038 struct wlandevice *wlandev = urb->context; 3039 3039 struct hfa384x *hw; 3040 - union hfa384x_usbin *usbin = (union hfa384x_usbin *)urb->transfer_buffer; 3040 + union hfa384x_usbin *usbin; 3041 3041 struct sk_buff *skb = NULL; 3042 3042 int result; 3043 3043 int urb_status; ··· 3139 3139 /* Note: the check of the sw_support field, the type field doesn't 3140 3140 * have bit 12 set like the docs suggest. 3141 3141 */ 3142 + usbin = (union hfa384x_usbin *)urb->transfer_buffer; 3142 3143 type = le16_to_cpu(usbin->type); 3143 3144 if (HFA384x_USB_ISRXFRM(type)) { 3144 3145 if (action == HANDLE) {