summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/lwfinger/r8192E into ↵Greg Kroah-Hartman2011-08-2376-12545/+50462
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | staging-next * git://git.kernel.org/pub/scm/linux/kernel/git/lwfinger/r8192E: (61 commits) staging: rtl8192e: Fix compilation warnings staging: rtl8192e: Fix unload/reload problem staging: rtl8192e: Remove dead code associated with CONFIG_RTL_RFKILL staging: rtl8192e: Remove conditional code associated with EEPROM_OLD_FORMAT_SUPPORT staging: rtl8192e: Remove dead code associated with EFUSE_REPG_WORKAROUND staging: rtl8192e: Remove LOOP_TEST as parameter staging: rtl8192e: Remove dead code associated with CONFIG_FW_SETCHAN staging: rtl8192e: Remove dead code associated with CONFIG_RTLWIFI_DEBUGFS staging: rtl8192e: Remove dead code associated with _RTL8192_EXT_PATCH_ staging: rtl8192e: Remove ifdefs for CONFIG_RTLLIB_DEBUG staging: rtl8192e: Remove dead code associated with RTL819x_DEBUG staging: rtl8192e: Remove dead code associated with _ENABLE_SW_BEACON staging: rtl8192e: Remove dead code associated with CONFIG_CRYPTO_HMAC staging: rtl8192e: Remove dead code associated with CONFIG_BT_30 staging: rtl8192e: Remove dead code associated with ENABLE_NULL_PT_DEBUG staging: rtl8192e: Remove dead code associated with CONFIG_64BIT_DMA staging: rtl8192e: Remove dead code associated with CONFIG_RTLLIB_CRYPT_TKIP staging: rtl8192e: Remove dead code associated with IRQF_SHARED staging: rtl8192e: Remove dead code associated with CONFIG_CFG_80211 staging: rtl8192e: Remove dead code associated with BUILT_IN_CRYPTO ...
| * staging: rtl8192e: Fix compilation warningsLarry Finger2011-08-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | When the driver is compiled, the following messages result: CC [M] drivers/staging/rtl8192e/r8192E_phy.o drivers/staging/rtl8192e/r8192E_phy.c: In function ‘rtl8192_phy_ConfigRFWithHeaderFile’: drivers/staging/rtl8192e/r8192E_phy.c:791:25: warning: array subscript is above array bounds drivers/staging/rtl8192e/r8192E_phy.c:780:25: warning: array subscript is above array bounds Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Fix unload/reload problemLarry Finger2011-08-231-0/+5
| | | | | | | | | | | | | | The driver is not releasing the memory region that was mapped. As a result, the driver cannot be unloaded and reloaded. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_RTL_RFKILLLarry Finger2011-08-232-23/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove conditional code associated with ↵Larry Finger2011-08-232-7/+0
| | | | | | | | | | | | EEPROM_OLD_FORMAT_SUPPORT Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with EFUSE_REPG_WORKAROUNDLarry Finger2011-08-231-5/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove LOOP_TEST as parameterLarry Finger2011-08-231-7/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_FW_SETCHANLarry Finger2011-08-231-4/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_RTLWIFI_DEBUGFSLarry Finger2011-08-235-193/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with _RTL8192_EXT_PATCH_Larry Finger2011-08-231-61/+0
| |
| * staging: rtl8192e: Remove ifdefs for CONFIG_RTLLIB_DEBUGLarry Finger2011-08-234-47/+1
| | | | | | | | | | | | This symbol is unconditionally defined in a header file, thus tests for it can be removed. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with RTL819x_DEBUGLarry Finger2011-08-231-6/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with _ENABLE_SW_BEACONLarry Finger2011-08-232-21/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_CRYPTO_HMACLarry Finger2011-08-232-21/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_BT_30Larry Finger2011-08-231-4/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with ENABLE_NULL_PT_DEBUGLarry Finger2011-08-231-19/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_64BIT_DMALarry Finger2011-08-231-11/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_RTLLIB_CRYPT_TKIPLarry Finger2011-08-232-26/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with IRQF_SHAREDLarry Finger2011-08-231-4/+0
| | | | | | | | | | | | This symbol is defined in the kernel. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_CFG_80211Larry Finger2011-08-235-512/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with BUILT_IN_CRYPTOLarry Finger2011-08-233-46/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: IEEE80211_RADIOTAP_F_BADFCS is defined in kernel, do not ↵Larry Finger2011-08-231-4/+0
| | | | | | | | | | | | duplicate Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CUSTOMER_ID_INTEL_CMPC ↵Larry Finger2011-08-233-11/+0
| | | | | | | | | | | | and CONFIG_CRDA Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with FOR_ANDROID_X86 and ↵Larry Finger2011-08-231-5/+0
| | | | | | | | | | | | FOR_MOBLIN Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with WMM_Hang_8187Larry Finger2011-08-231-6/+1
| | | | | | | | | | | | | | This patch also removes an "#if 1 .... #endif" that survived an earlier edit. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with BUILT_IN_MSHCLASSLarry Finger2011-08-231-10/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with ADHOC_11NLarry Finger2011-08-231-4/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with WIFI_TESTLarry Finger2011-08-231-4/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with NOT_YETLarry Finger2011-08-231-46/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with RTK_DMP_PLATFORMLarry Finger2011-08-234-21/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with USB_RX_AGGREGATION_SUPPORTLarry Finger2011-08-233-60/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with SUPPORT_USPDLarry Finger2011-08-231-8/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with TCP_CSUM_OFFLOAD_RXLarry Finger2011-08-232-24/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with ↵Larry Finger2011-08-233-14/+0
| | | | | | | | | | | | USB_TX_DRIVER_AGGREGATION_ENABLE Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove code dependent of JOHN_DUMPLarry Finger2011-08-231-11/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove ifdefs that depend on ENABLE_DOT11DLarry Finger2011-08-2310-71/+0
| | | | | | | | | | | | | | This configuration parameter is selected in the Makefile, thus the conditional code can be removed. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove references to ENABLE_GPIO_RADIO_CTLLarry Finger2011-08-233-11/+0
| | | | | | | | | | | | This configuration variable is set in the make file. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code from removal of ENABLE_TKIP11NLarry Finger2011-08-231-4/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with PF_SYNCTHREADLarry Finger2011-08-232-8/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with COMPATIBLE_WITH_RALINK_MESHLarry Finger2011-08-231-5/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_ASPM_OR_D3Larry Finger2011-08-235-410/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with USB_USE_ALIGNMENTLarry Finger2011-08-233-153/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code involved with TO_DOLarry Finger2011-08-232-54/+5
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code involved with TO_DO_LISTLarry Finger2011-08-235-142/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code inside 'ifdef MERGE_TO_DO'Larry Finger2011-08-233-35/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with CONFIG_MPLarry Finger2011-08-232-94/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Fix kernel panics due to RX skb allocation failuresLarry Finger2011-08-231-25/+19
| | | | | | | | | | | | | | | | | | | | | | This driver uses RX skb's of O(2), thus it is possible for memory fragmentation to prevent the allocation of a new one to replace a newly-received buffer. When such a failure occurs, the kernel panics. The fix is to drop an incoming packet whenever such an allocation fails. This fix matches the one done in rtlwifi for other Realtek PCI devices. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Fix edit error in removal of dead code associated with ↵Larry Finger2011-08-231-0/+2
| | | | | | | | | | | | | | | | | | RTL8190P One too many lines were removed in an earlier patch. Rather than resubmit as a V2, this line is added back here. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove internal references to RTL8192ELarry Finger2011-08-239-206/+10
| | | | | | | | | | | | | | Now that the code can only generate a driver for RTL8192E, the internal ifdef's are no longer needed. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| * staging: rtl8192e: Remove dead code associated with RTL8192ULarry Finger2011-08-233-52/+0
| | | | | | | | Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
OpenPOWER on IntegriCloud