Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e895f00a authored by Yan Laijun's avatar Yan Laijun Committed by Greg Kroah-Hartman
Browse files

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: default avatarYan Laijun <yan.laijun@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e5851dc0
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -3037,7 +3037,7 @@ static void hfa384x_usbin_callback(struct urb *urb)
{
{
	struct wlandevice *wlandev = urb->context;
	struct wlandevice *wlandev = urb->context;
	struct hfa384x *hw;
	struct hfa384x *hw;
	union hfa384x_usbin *usbin = (union hfa384x_usbin *)urb->transfer_buffer;
	union hfa384x_usbin *usbin;
	struct sk_buff *skb = NULL;
	struct sk_buff *skb = NULL;
	int result;
	int result;
	int urb_status;
	int urb_status;
@@ -3139,6 +3139,7 @@ static void hfa384x_usbin_callback(struct urb *urb)
	/* Note: the check of the sw_support field, the type field doesn't
	/* Note: the check of the sw_support field, the type field doesn't
	 *       have bit 12 set like the docs suggest.
	 *       have bit 12 set like the docs suggest.
	 */
	 */
	usbin = (union hfa384x_usbin *)urb->transfer_buffer;
	type = le16_to_cpu(usbin->type);
	type = le16_to_cpu(usbin->type);
	if (HFA384x_USB_ISRXFRM(type)) {
	if (HFA384x_USB_ISRXFRM(type)) {
		if (action == HANDLE) {
		if (action == HANDLE) {