Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752332Ab0BUPHT (ORCPT ); Sun, 21 Feb 2010 10:07:19 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:63820 "EHLO mail-fx0-f213.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751976Ab0BUPHQ convert rfc822-to-8bit (ORCPT ); Sun, 21 Feb 2010 10:07:16 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; b=VhwONCBu0ZORG92LMzRrU0RYAoA1oPkF93JTvcLF7vgq3mbv3iSug7VgELS5MxePr4 iPHk1U4e2R3N0vkYd3tznQLHbFM9FiZ+HpIxfq5TBHwTTAGliaFXkAhq0DVdKhTuxEqh ZOCY47Achwe9DhrGUnmQdRH95yeB1bgDTqHFI= MIME-Version: 1.0 From: =?ISO-8859-1?Q?G=E1bor_Stefanik?= Date: Sun, 21 Feb 2010 16:06:54 +0100 Message-ID: <69e28c911002210706k1a5ae686r76df74a743dcce1c@mail.gmail.com> Subject: Re: [PATCH] Staging: wlan-ng: Fix 80 character limit warnings Fixed 2 warnings identified by the checkpatch.pl tool which occured due to two lines of code going over the 80 character limit. Fixed by wrapping the lines. Signed-off-by: Jim Dog X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2376 Lines: 56 On Sun, Feb 21, 2010 at 4:03 PM, wrote: > From: Jim Dog > > --- > ?drivers/staging/wlan-ng/prism2usb.c | ? ?9 ++++++--- > ?1 files changed, 6 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/wlan-ng/prism2usb.c b/drivers/staging/wlan-ng/prism2usb.c > index 9dde68b..b55930c 100644 > --- a/drivers/staging/wlan-ng/prism2usb.c > +++ b/drivers/staging/wlan-ng/prism2usb.c > @@ -24,8 +24,9 @@ static struct usb_device_id usb_prism_tbl[] = { > ? ? ? ? (0x066b, 0x2213, "Linksys WUSB12v1.1 11Mbps WLAN USB Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE > ? ? ? ? (0x067c, 0x1022, "Siemens SpeedStream 1022 11Mbps WLAN USB Adapter")}, > - ? ? ? {PRISM_USB_DEVICE(0x049f, 0x0033, > - ? ? ? ? ? ? ? ? ? ? ? ? "Compaq/Intel W100 PRO/Wireless 11Mbps multiport WLAN Adapter")}, > + ? ? ? {PRISM_USB_DEVICE > + ? ? ? ?(0x049f, 0x0033, > + ? ? ? ? "Compaq/Intel W100 PRO/Wireless 11Mbps multiport WLAN Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE > ? ? ? ? (0x0411, 0x0016, "Melco WLI-USB-S11 11Mbps WLAN Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE > @@ -55,7 +56,9 @@ static struct usb_device_id usb_prism_tbl[] = { > ? ? ? ? (0x04f1, 0x3009, "JVC MP-XP7250 Builtin USB WLAN Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE(0x0846, 0x4110, "NetGear MA111")}, > ? ? ? ?{PRISM_USB_DEVICE(0x03f3, 0x0020, "Adaptec AWN-8020 USB WLAN Adapter")}, > -/* ? ? ?{PRISM_USB_DEVICE(0x0ace, 0x1201, "ZyDAS ZD1201 Wireless USB Adapter")}, */ > +/* > + ? ? ? {PRISM_USB_DEVICE(0x0ace, 0x1201, "ZyDAS ZD1201 Wireless USB Adapter")}, > +*/ Why is this even included? We do have support for this in zd1201, and I'm pretty sure wlan-ng doesn't actually handle it. > ? ? ? ?{PRISM_USB_DEVICE(0x2821, 0x3300, "ASUS-WL140 Wireless USB Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE(0x2001, 0x3700, "DWL-122 Wireless USB Adapter")}, > ? ? ? ?{PRISM_USB_DEVICE > -- > 1.6.3.3 > > _______________________________________________ > devel mailing list > devel@linuxdriverproject.org > http://driverdev.linuxdriverproject.org/mailman/listinfo/devel > -- Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/