linux-2.6
14 years agoStaging: add rtl8192SU wireless usb driver
Jerry Chuang [Fri, 22 May 2009 05:16:02 +0000 (22:16 -0700)] 
Staging: add rtl8192SU wireless usb driver

Driver from Realtek for the Realtek RTL8192 USB wifi device

Based on the r8187 driver from Andrea Merello <andreamrl@tiscali.it> and
others.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: fix build warnings
Greg Kroah-Hartman [Thu, 4 Jun 2009 18:29:54 +0000 (11:29 -0700)] 
Staging: cpc-usb: fix build warnings

This fixes some build warnings in the cpc-usb driver.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: fix printk format warnings
Alexander Beregalov [Thu, 21 May 2009 11:44:46 +0000 (15:44 +0400)] 
Staging: cpc-usb: fix printk format warnings

Fix this warnings:
cpc-usb_drv.c:478: warning: format '%d' expects type 'int',
but argument 4 has type 'size_t'
cpc-usb_drv.c:1034: warning: format '%d' expects type 'int',
but argument 3 has type 'long unsigned int'

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: depends on PROC_FS
Alexander Beregalov [Thu, 21 May 2009 11:44:45 +0000 (15:44 +0400)] 
Staging: cpc-usb: depends on PROC_FS

Fix this build error when PROC_FS is not enabled:
cpc-usb_drv.c:61:2: error: #error "PROCFS needed"
cpc-usb_drv.c:1159: error: implicit declaration of function 'proc_mkdir'

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: Adjust NULL test
Julia Lawall [Wed, 20 May 2009 07:17:11 +0000 (09:17 +0200)] 
Staging: cpc-usb: Adjust NULL test

Since card must already be non-NULL, it seems that what was intended
was to test the result of kmalloc.

The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression E,E1;
identifier f,fld,fld1;
statement S1,S2;
@@

E->fld = f(...);
... when != E = E1
    when != E->fld1 = E1
if (
-   E
+   E->fld
           == NULL) S1 else S2
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: add TODO file
Greg Kroah-Hartman [Fri, 15 May 2009 04:16:23 +0000 (21:16 -0700)] 
Staging: cpc-usb: add TODO file

List what needs to be done to get this driver merged into
the main part of the kernel tree.

Cc: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: fix checkpatch warnings in sja2m16c.h
Greg Kroah-Hartman [Fri, 15 May 2009 04:14:27 +0000 (21:14 -0700)] 
Staging: cpc-usb: fix checkpatch warnings in sja2m16c.h

This fixes most of the coding style issues in sja2m16c.h

Cc: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: fix up checkpatch errors in cpc-usb_drv.c
Greg Kroah-Hartman [Fri, 15 May 2009 04:13:51 +0000 (21:13 -0700)] 
Staging: cpc-usb: fix up checkpatch errors in cpc-usb_drv.c

This resolves the checkpatch errors in cpc-usb_drv.c

Cc: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: add driver to the build
Greg Kroah-Hartman [Fri, 15 May 2009 03:47:10 +0000 (20:47 -0700)] 
Staging: cpc-usb: add driver to the build

This adds the cpc-usb driver to the kernel build

Cc: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: cpc-usb: fix some build problems in the driver
Greg Kroah-Hartman [Fri, 15 May 2009 03:56:58 +0000 (20:56 -0700)] 
Staging: cpc-usb: fix some build problems in the driver

It will now build properly on the latest kernel tree.

Cc: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: add cpc-usb driver to the staging tree
Sebastian Haas [Fri, 15 May 2009 03:46:12 +0000 (20:46 -0700)] 
Staging: add cpc-usb driver to the staging tree

This is a CPC CAN USB driver.

Just some comments:
cpcusb.h and cpc-usb_drv.c: Essential driver source code
sja2m16c_2.c: Helper for converting bitrate timings
cpc.h: Structures and definition needed to communicate with the device

From: Sebastian Haas <haas@ems-wuensche.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: epl: do not use CLONE_SIGHAND with allow_signal()
Oleg Nesterov [Sun, 3 May 2009 22:15:31 +0000 (00:15 +0200)] 
Staging: epl: do not use CLONE_SIGHAND with allow_signal()

Not sure this patch is really needed since kernel_thread() is deprecated
(and checkpatch.pl complains).

But we should not use kernel_thread(CLONE_SIGHAND) if we are going to play
with signals.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: fix Kconfig issues
Greg Kroah-Hartman [Thu, 4 Jun 2009 17:40:37 +0000 (10:40 -0700)] 
Staging: android: fix Kconfig issues

Wrap all ANDROID config items with a #if to keep from asking if you want
specific Android drivers even if you say N to CONFIG_ANDROID

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: binder: fix up some checkpatch warnings
Greg Kroah-Hartman [Tue, 12 May 2009 00:00:41 +0000 (17:00 -0700)] 
Staging: android: binder: fix up some checkpatch warnings

This cleans up the majority of the checkpatch warnings in the android
binder driver.  All that is left now is a bunch of too-long-line stuff.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: ram_console: fix up remaining checkpatch warnings
Greg Kroah-Hartman [Tue, 12 May 2009 00:00:41 +0000 (17:00 -0700)] 
Staging: android: ram_console: fix up remaining checkpatch warnings

This cleans up the last of the checkpatch warnings in the android
ram_console driver.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: logger: fix up remaining checkpatch warnings
Greg Kroah-Hartman [Tue, 12 May 2009 00:00:41 +0000 (17:00 -0700)] 
Staging: android: logger: fix up remaining checkpatch warnings

This cleans up the last of the checkpatch warnings in the android logger
driver.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: lowmemorykiller: fix up remaining checkpatch warnings
Greg Kroah-Hartman [Tue, 12 May 2009 00:00:41 +0000 (17:00 -0700)] 
Staging: android: lowmemorykiller: fix up remaining checkpatch warnings

This cleans up the last of the checkpatch warnings in the android
lowmemorykiller driver.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: timed_gpio: Separate timed_output class into a separate driver.
Mike Lockwood [Mon, 4 May 2009 22:48:00 +0000 (15:48 -0700)] 
Staging: android: timed_gpio: Separate timed_output class into a separate driver.

Signed-off-by: Mike Lockwood <lockwood@android.com>
Signed-off-by: Arve Hjønnevåg <arve@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: lowmemorykiller: fix possible android low memory killer NULL pointer
David Rientjes [Mon, 11 May 2009 22:45:14 +0000 (15:45 -0700)] 
Staging: android: lowmemorykiller: fix possible android low memory killer NULL pointer

get_mm_rss() atomically dereferences the actual without checking for a
NULL pointer, which is possible since task_lock() is not held.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: lowmemorykiller: cleanup android low memory killer
David Rientjes [Mon, 11 May 2009 22:45:12 +0000 (15:45 -0700)] 
Staging: android: lowmemorykiller: cleanup android low memory killer

Clean up the code in lowmem_shrink() for the Android low memory killer so
that it follows the kernel coding style.

It's unnecessary to check for p->oomkilladj >= min_adj if the selected
task's oomkilladj score is stored since get_mm_rss() will always be
greater than zero.

Cc: San Mehat <san@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: lowmemorykiller: Don't count free space unless it meets the specifi...
Arve Hjønnevåg [Mon, 11 May 2009 22:45:10 +0000 (15:45 -0700)] 
Staging: android: lowmemorykiller: Don't count free space unless it meets the specified limit by itself

From: Arve Hjønnevåg <arve@android.com>

This allows processes to be killed when the kernel evict cache pages in
an attempt to get more contiguous free memory.

Signed-off-by: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Cc: San Mehat <san@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: android: lowmemorykiller: Only iterate over process list when needed.
Arve Hjønnevåg [Mon, 11 May 2009 22:45:09 +0000 (15:45 -0700)] 
Staging: android: lowmemorykiller: Only iterate over process list when needed.

Use NR_ACTIVE plus NR_INACTIVE as a size estimate for our fake cache
instead the sum of rss. Neither method is accurate.

Also skip the process scan, if the amount of memory available is above
the largest threshold set.

Signed-off-by: Arve Hjønnevåg <arve@android.com>
Cc: David Rientjes <rientjes@google.com>
Cc: San Mehat <san@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: uses pci functions, should depend on PCI
Randy Dunlap [Fri, 5 Jun 2009 18:12:03 +0000 (11:12 -0700)] 
Staging: vt6655: uses pci functions, should depend on PCI

This driver uses lots of pci_*() calls, so it should depend on PCI.

drivers/staging/vt6655/device_main.c:3942: error: implicit declaration of function 'pci_dev_driver'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: Integrate drivers/staging/vt6655 into build system.
Forest Bond [Tue, 2 Jun 2009 18:44:46 +0000 (14:44 -0400)] 
Staging: vt6655: Integrate drivers/staging/vt6655 into build system.

Integrate drivers/staging/vt6655 into build system.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: use net_device_ops for management functions
Forest Bond [Tue, 2 Jun 2009 18:44:33 +0000 (14:44 -0400)] 
Staging: vt6655: use net_device_ops for management functions

vt6655: use net_device_ops for management functions

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: Remove LINUX_VERSION_CODE preprocessor conditionals.
Forest Bond [Tue, 2 Jun 2009 00:00:35 +0000 (20:00 -0400)] 
Staging: vt6655: Remove LINUX_VERSION_CODE preprocessor conditionals.

vt6655: Remove LINUX_VERSION_CODE preprocessor conditionals.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: Replace net_device->priv accesses with netdev_priv calls.
Forest Bond [Tue, 2 Jun 2009 00:00:14 +0000 (20:00 -0400)] 
Staging: vt6655: Replace net_device->priv accesses with netdev_priv calls.

vt6655: Replace net_device->priv accesses with netdev_priv calls.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: Build vt6655.ko, not viawget.ko.
Forest Bond [Tue, 5 May 2009 01:48:27 +0000 (21:48 -0400)] 
Staging: vt6655: Build vt6655.ko, not viawget.ko.

As you requested, this series is to be applied on top of patches 1, 2, and 6
(and replaces patches 3, 4, 5, 7, and 8) from the previous series.

Build vt6655.ko, not viawget.ko.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655: Drop obsolete fsuid/fsgid accesses.
Forest Bond [Sat, 25 Apr 2009 14:32:25 +0000 (10:32 -0400)] 
Staging: vt6655: Drop obsolete fsuid/fsgid accesses.

drivers/staging/vt6655/device_main.c: Drop obsolete fsuid/fsgid accesses.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: vt6655 Add includes to drivers/staging/vt6655.
Forest Bond [Sat, 25 Apr 2009 14:31:32 +0000 (10:31 -0400)] 
Staging: vt6655 Add includes to drivers/staging/vt6655.

Add includes to drivers/staging/vt6655.  These came from the includes directory
in the upstream source archive.

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: Add pristine upstream vt6655 driver sources
Forest Bond [Sat, 25 Apr 2009 14:30:44 +0000 (10:30 -0400)] 
Staging: Add pristine upstream vt6655 driver sources

Add pristine upstream vt6655 driver sources to drivers/staging/vt6655.  These
files were literally copied from the driver directory in the upstream source
archive, available here:

  http://www.viaarena.com/Driver/vt6655_linux_src_v1.19.12_x86.zip

Signed-off-by: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: fix build warnings
Greg Kroah-Hartman [Thu, 4 Jun 2009 18:29:54 +0000 (11:29 -0700)] 
Staging: rt2870: fix build warnings

This fixes some build warnings in the rt2870 driver.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agostaging: rtlxxxx: off by one in AsicSendCommandToMcu() and NDIS_STATUS NICLoadFirmware()
Roel Kluin [Wed, 13 May 2009 18:37:54 +0000 (20:37 +0200)] 
staging: rtlxxxx: off by one in AsicSendCommandToMcu() and NDIS_STATUS NICLoadFirmware()

With a postfix increment i/Index is incremented beyond 100/1000 so the
message will be displayed too soon.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: fix for driver RT2860 to be able to connect to WPA2 networks
Bryan Stephenson [Fri, 1 May 2009 20:07:53 +0000 (21:07 +0100)] 
Staging: rt2860: fix for driver RT2860 to be able to connect to WPA2 networks

Hi

patch to change a line in the cmm_wpa.c file for the rt2860 driver so it
can connect to WPA2 networks with TKIP & AES encryption

Signed-off-by: Bryan Stephenson <acreda1234@tiscali.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt28[67]0: merge rt28[67]0/sta/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:31 +0000 (16:06 +0200)] 
Staging: rt28[67]0: merge rt28[67]0/sta/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: prepare for rt28[67]0/sta/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:29 +0000 (16:06 +0200)] 
Staging: rt2860: prepare for rt28[67]0/sta/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt28[67]0: merge rt28[67]0/common/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:29 +0000 (16:06 +0200)] 
Staging: rt28[67]0: merge rt28[67]0/common/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: prepare for rt28[67]0/common/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:28 +0000 (16:06 +0200)] 
Staging: rt2860: prepare for rt28[67]0/common/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt28[67]0: merge rt28[67]0/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:27 +0000 (16:06 +0200)] 
Staging: rt28[67]0: merge rt28[67]0/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: prepare for rt28[67]0/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:25 +0000 (16:06 +0200)] 
Staging: rt2860: prepare for rt28[67]0/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt{28,30}70: merge rt{28,30}70/sta/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:24 +0000 (16:06 +0200)] 
Staging: rt{28,30}70: merge rt{28,30}70/sta/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: prepare for rt{28,30}70/sta/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:23 +0000 (16:06 +0200)] 
Staging: rt2870: prepare for rt{28,30}70/sta/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt{28,30}70: merge rt{28,30}70/common/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:23 +0000 (16:06 +0200)] 
Staging: rt{28,30}70: merge rt{28,30}70/common/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: prepare for rt{28,30}70/common/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:22 +0000 (16:06 +0200)] 
Staging: rt2870: prepare for rt{28,30}70/common/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt{28,30}70: merge rt{28,30}70/*.[ch]
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:19 +0000 (16:06 +0200)] 
Staging: rt{28,30}70: merge rt{28,30}70/*.[ch]

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: prepare for rt{28,30}70/*.[ch] merge
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:18 +0000 (16:06 +0200)] 
Staging: rt2870: prepare for rt{28,30}70/*.[ch] merge

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:16 +0000 (16:06 +0200)] 
Staging: rt3070: remove dead code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:14 +0000 (16:06 +0200)] 
Staging: rt2870: remove dead code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:12 +0000 (16:06 +0200)] 
Staging: rt2860: remove dead code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: use empty ASSERT() macro
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:11 +0000 (16:06 +0200)] 
Staging: rt3070: use empty ASSERT() macro

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: use empty ASSERT() macro
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:09 +0000 (16:06 +0200)] 
Staging: rt2870: use empty ASSERT() macro

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: use empty ASSERT() macro
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:09 +0000 (16:06 +0200)] 
Staging: rt2860: use empty ASSERT() macro

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead CONFIG_AP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:09 +0000 (16:06 +0200)] 
Staging: rt3070: remove dead CONFIG_AP_SUPPORT code

Then remove no longer needed IF_DEV_CONFIG_OPMODE_ON_[AP,STA]() macros.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead CONFIG_AP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:08 +0000 (16:06 +0200)] 
Staging: rt2870: remove dead CONFIG_AP_SUPPORT code

Then remove no longer needed IF_DEV_CONFIG_OPMODE_ON_[AP,STA]() macros.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead CONFIG_AP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:04 +0000 (16:06 +0200)] 
Staging: rt2860: remove dead CONFIG_AP_SUPPORT code

Then remove no longer needed IF_DEV_CONFIG_OPMODE_ON_[AP,STA]() macros.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove DOT11_N_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:04 +0000 (16:06 +0200)] 
Staging: rt3070: remove DOT11_N_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove DOT11_N_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:02 +0000 (16:06 +0200)] 
Staging: rt2870: remove DOT11_N_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove DOT11_N_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:06:00 +0000 (16:06 +0200)] 
Staging: rt2860: remove DOT11_N_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:59 +0000 (16:05 +0200)] 
Staging: rt3070: remove WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:57 +0000 (16:05 +0200)] 
Staging: rt2870: remove WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:56 +0000 (16:05 +0200)] 
Staging: rt2860: remove WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:54 +0000 (16:05 +0200)] 
Staging: rt3070: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:53 +0000 (16:05 +0200)] 
Staging: rt2870: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:51 +0000 (16:05 +0200)] 
Staging: rt2860: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove CONFIG_STA_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:49 +0000 (16:05 +0200)] 
Staging: rt3070: remove CONFIG_STA_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove CONFIG_STA_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:48 +0000 (16:05 +0200)] 
Staging: rt2870: remove CONFIG_STA_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove CONFIG_STA_SUPPORT ifdefs
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:46 +0000 (16:05 +0200)] 
Staging: rt2860: remove CONFIG_STA_SUPPORT ifdefs

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead RT_BIG_ENDIAN code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:44 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead RT_BIG_ENDIAN code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead RT_BIG_ENDIAN code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:42 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead RT_BIG_ENDIAN code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead RT_BIG_ENDIAN code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:39 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead RT_BIG_ENDIAN code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead INF_AMAZON_SE code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:35 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead INF_AMAZON_SE code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead INF_AMAZON_SE code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:34 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead INF_AMAZON_SE code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead INF_AMAZON_SE code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:33 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead INF_AMAZON_SE code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead DOT11N_DRAFT3 code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:33 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead DOT11N_DRAFT3 code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead DOT11N_DRAFT3 code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:32 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead DOT11N_DRAFT3 code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead DOT11N_DRAFT3 code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:29 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead DOT11N_DRAFT3 code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead LEAP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:26 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead LEAP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead LEAP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:25 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead LEAP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead LEAP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:24 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead LEAP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead SINGLE_SKU code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:22 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead SINGLE_SKU code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead SINGLE_SKU code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:21 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead SINGLE_SKU code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead SINGLE_SKU code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:18 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead SINGLE_SKU code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead SNMP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:18 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead SNMP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead SNMP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:17 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead SNMP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead SNMP_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:16 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead SNMP_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead EXT_BUILD_CHANNEL_LIST code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:16 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead EXT_BUILD_CHANNEL_LIST code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead EXT_BUILD_CHANNEL_LIST code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:14 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead EXT_BUILD_CHANNEL_LIST code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead EXT_BUILD_CHANNEL_LIST code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:13 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead EXT_BUILD_CHANNEL_LIST code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead QOS_DLS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:12 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead QOS_DLS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead QOS_DLS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:09 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead QOS_DLS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead QOS_DLS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:07 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead QOS_DLS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead MULTIPLE_CARD_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:06 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead MULTIPLE_CARD_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead MULTIPLE_CARD_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:04 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead MULTIPLE_CARD_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead MULTIPLE_CARD_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:03 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead MULTIPLE_CARD_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead CARRIER_DETECTION_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:03 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead CARRIER_DETECTION_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead CARRIER_DETECTION_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:02 +0000 (16:05 +0200)] 
Staging: rt2870: remove dead CARRIER_DETECTION_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead CARRIER_DETECTION_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:01 +0000 (16:05 +0200)] 
Staging: rt2860: remove dead CARRIER_DETECTION_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt3070: remove dead DFS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:05:00 +0000 (16:05 +0200)] 
Staging: rt3070: remove dead DFS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2870: remove dead DFS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:04:59 +0000 (16:04 +0200)] 
Staging: rt2870: remove dead DFS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 years agoStaging: rt2860: remove dead DFS_SUPPORT code
Bartlomiej Zolnierkiewicz [Sun, 26 Apr 2009 14:04:58 +0000 (16:04 +0200)] 
Staging: rt2860: remove dead DFS_SUPPORT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>