summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Staging: fix typos concerning "address"Uwe Kleine-König2010-07-2211-15/+15
| | | | | Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: remove dbdefs.hMenon, Nishanth2010-07-223-71/+0
| | | | | | | Remove yet another custom definition header Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: remove OUT defineMenon, Nishanth2010-07-2251-234/+234
| | | | | | | Remove OUT modifier which makes no sense for linux kernel Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: remove OPTIONALMenon, Nishanth2010-07-2211-30/+30
| | | | | | | OPTIONAL modifier makes no sense in linux kernel Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: remove IN modifierMenon, Nishanth2010-07-2251-241/+241
| | | | | | | IN modifier does not exist. remove it Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: replace CONST with c standard constMenon, Nishanth2010-07-2232-65/+65
| | | | | Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: tidspbridge: remove GlobalTypes.hMenon, Nishanth2010-07-224-326/+0
| | | | | | | Remove custom globaltypes.h header Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: dt3155: Fixed all printk warnings found by checkpatch.plJoe Eloff2010-07-221-30/+30
| | | | | | | Added all KERN_ levels in printk found by checkpatch.pl Signed-off-by: Joe Eloff <kagen101@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: dt3155: Change include to linux headerJoe Eloff2010-07-221-1/+1
| | | | | | | Changed <asm/uaccess.h> to <linux/uaccess.h> Signed-off-by: Joe Eloff <kagen101@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: wlan-ng: remove own bin2hex converterAndy Shevchenko2010-07-221-4/+2
| | | | | | | In kernel we have hex_asc_hi and hex_asc_lo macroses to do the job. Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: wlags49_h2: remove custom hex_to_bin() methodAndy Shevchenko2010-07-222-38/+1
| | | | | Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: otus: remove unused methodsAndy Shevchenko2010-07-221-22/+0
| | | | | | | | | | | | | This is rebased version of the patch [1] which was mysteriously not pushed anywhere but acked. Here are two methods to convert hex value to binary format. These certain methods aren't used anywhere in kernel. [1] http://lkml.org/lkml/2010/2/18/267 Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: wlan-ng: removed typedef from prism2fw.cEdgardo Hames2010-07-221-51/+51
| | | | | | | Removed multiple typedef and fixed long lines. Signed-off-by: Edgardo Hames <ehames@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: wlan-ng: fix style in p80211netdev.cEdgardo Hames2010-07-221-1/+2
| | | | | Signed-off-by: Edgardo Hames <ehames@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: RT2860: Cleaned all bar one in chlist.hNeil Munro2010-07-221-27/+23
| | | | | | | | | I have cleaned all errors and all bar one warning in chlist.h. The remaining warning is a line over 80 characters warning. Breaking it doesnt look all that easy. Signed-off-by: Neil Munro <neilmunro@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: hv: check kzalloc() resultKulikov Vasiliy2010-07-221-0/+2
| | | | | | | If kzalloc() fails free allocated resources and exit. Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: sm7xx: Fixup of the section mismatchWu Zhangjin2010-07-221-1/+1
| | | | | Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* memrar: Updated maintainer contact informationOssama Othman2010-07-222-3/+3
| | | | | | Signed-off-by: Ossama Othman <ossama.othman@intel.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* memrar: Address kernel oops during resource cleanupOssama Othman2010-07-221-9/+19
| | | | | | | | | | | | | | | Some delayed initialization is performed in this driver. Make sure resources that are used during driver clean-up (e.g. during driver's release() function) are fully initialized before first use. This is particularly important for the case when the delayed initialization isn't completed, leaving behind a partially initialized driver. Such a scenario can occur when RAR is not available on the platform, and the driver is release()d. Signed-off-by: Ossama Othman <ossama.othman@intel.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: batman-adv: Update TODO with new points from reviewSven Eckelmann2010-07-221-3/+6
| | | | | | | | | David S. Miller provided some new ideas and found problems in his review 20100719.212625.255369607.davem@davemloft.net. These issues must be resolved before it can be merged into net. Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: batman-adv: don't use default init_module/cleanup_module function namesRandy Dunlap2010-07-221-2/+5
| | | | | | | | | | | | | | | | | | Fix two staging drivers to use module_init()/module_exit() instead of default init_module() and cleanup_module() function names so that there are no name conflicts when both are built-in. drivers/staging/dt3155/built-in.o: In function `cleanup_module': (.text+0xc0): multiple definition of `cleanup_module' drivers/staging/batman-adv/built-in.o:(.text+0x330): first defined here drivers/staging/dt3155/built-in.o: In function `init_module': (.text+0xe60): multiple definition of `init_module' drivers/staging/batman-adv/built-in.o:(.text+0x400): first defined here Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> [sven.eckelmann@gmx.de: Mark module init and exit functions as static] Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: batman-adv: Don't increment stats of foreign deviceSven Eckelmann2010-07-221-7/+0
| | | | | | | | | | The receive hook for batman-adv ethernet frames tried to get the last device which processed the skb before us. It only used that information to update the rx_bytes and rx_packets stat of that foreign device which already has updated it using its own receive functions. Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: iio: add digital compass hmc5843 driverShubhrajyoti D2010-07-225-0/+646
| | | | | | | | | | | | Adding support for the Honeywell HMC5843. The interface to the device is i2c TODO: Adding the documentation Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com> Acked-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: comedi: formatting of pointers in printk()Kulikov Vasiliy2010-07-221-1/+1
| | | | | | | Use %p instead of %08x in printk(). Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: msm: formatting of pointers in printk()Kulikov Vasiliy2010-07-221-4/+4
| | | | | | | | | Use %p instead of %08x in printk(). Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Acked-by: David Brown <davidb@codeaurora.org> Acked-by: Daniel Walker <dwalker@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: ti-st: give proto drivers contextPavan Savoy2010-07-223-12/+27
| | | | | | | | | | | | protocol drivers such as BT, FM and GPS when registering to ST now provide their own private data which they expect when their functions namely registration completed & receive are called. Also upon tty_close, set protos_registered count to 0, although all protocols are marked un-registered. Signed-off-by: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: ti-st: cleanup code commentsPavan Savoy2010-07-226-117/+193
| | | | | | | | cleanup the code commenting in the headers/structures, also cleanup few inline commenting in the function Signed-off-by: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: ti-st: smarten, reduce logsPavan Savoy2010-07-223-46/+35
| | | | | | | | | | Replace looping on the data buffers and printk-ing by print_hex_dump. Also replace most of the pr_info by pr_debug to reduce logging at default loglevels (7 in our case..) Signed-off-by: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* Staging: ti-st: make use of linux err codesPavan Savoy2010-07-225-56/+47
| | | | | | | | remove custom error code definitions from the header and make use of the agreed upon linux error codes. Signed-off-by: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: don't use own isxdigit() methodAndy Shevchenko2010-07-221-24/+3
| | | | | Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: added ioctl[SIOCSIWPMKSA] implementationFlorian Schilhabel2010-07-223-1/+122
| | | | | | | | | errors like: ioctl[SIOCSIWPMKSA]: Invalid argument should now be gone. Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge changes in rtl819x_HTProc.c; still incompleteFlorian Schilhabel2010-07-221-80/+29
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge changes into ieee80211_rx_ADDBARsp()Florian Schilhabel2010-07-221-10/+4
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge updated ieee80211_crypto_ops()Florian Schilhabel2010-07-224-4/+10
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge changes in ieee80211_tkip_data()Florian Schilhabel2010-07-221-5/+5
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge changes in ieee80211_authentication_req()Florian Schilhabel2010-07-222-18/+59
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: cleanup in ieee80211_softmac.cFlorian Schilhabel2010-07-221-81/+3
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl819su: merge changes in softmac_ps_mgmt_xmit()Florian Schilhabel2010-07-221-3/+13
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl819su: update MgntQuery_MgntFrameTxRate()Florian Schilhabel2010-07-221-15/+38
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl819su: update probe_rq_parse()Florian Schilhabel2010-07-221-1/+10
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl819su: ieee80211_associate_procedure_wq() updateFlorian Schilhabel2010-07-221-0/+6
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: remove a section mismatch warningFlorian Schilhabel2010-07-225-9/+9
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: merge changes in r8192U_wx.cFlorian Schilhabel2010-07-221-30/+32
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: update TODOFlorian Schilhabel2010-07-221-1/+6
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: various updatesFlorian Schilhabel2010-07-225-203/+232
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl819esu: cleanup; r8192S_Efuse.c, r8192S_Efuse.hFlorian Schilhabel2010-07-222-7/+1
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: updated r8192SU_HWImg.c, r8192SU_HWImg.hFlorian Schilhabel2010-07-222-10/+49
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: remove some unused code, cleanupFlorian Schilhabel2010-07-224-37/+0
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: more code cleanupFlorian Schilhabel2010-07-223-88/+64
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* staging: rtl8192su: code cleanupFlorian Schilhabel2010-07-224-44/+88
| | | | | Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
OpenPOWER on IntegriCloud