Larry Finger
cfd60faf5e
rtl8188eu: Remove "if 1"
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-07 13:00:36 -06:00
Larry Finger
0b5c6eb35b
rtl8188eu: Change BOOLEAN to bool
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-02 17:21:23 -06:00
Larry Finger
ed192682fe
rtl_8188eu: Remove CONFIG_MMC_PM_KEEP_POWER, and CONFIG_WOWLAN
...
These parameters are not defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-02 17:03:18 -06:00
Larry Finger
2a75f42bff
rtl8188eu: Remove CONFIG_EFUSE_CONFIG_FILE and CONFIG_RF_GAIN_OFFSET
...
These two interdependent parameters are not defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-02 11:34:17 -06:00
Larry Finger
1155811fcf
rtl8188eu: Remove CONFIG_IOL
...
This parameter is defined by default.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-01 10:36:23 -06:00
Larry Finger
f7d31c956e
rtl8188eu: Convert CONFIG_IOL_EFUSE_PATCH to CONFIG_IOL
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-03-01 10:22:58 -06:00
Larry Finger
ee0ecc2037
rtl8188eu: Remove CONFIG_TX_EARLY_MODE
...
This one is not defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-02-28 12:41:56 -06:00
Larry Finger
5a7239faf3
rtl8188eu: Remove CONFIG_USB_RX_AGGREGATION
...
This symbol is always defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-02-26 14:23:17 -06:00
Larry Finger
3263fc1330
rtl8188eu: Remove CONFIG_USB_TX_AGGREGATION
...
This one was defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-02-26 14:19:01 -06:00
Larry Finger
7c7f632ac7
rtl8188eu: Fix some sparse warnings
...
The driver did not work on PowerPC, which is big endian. This patch
fixes all the sparse warnings concerning improper use of __le16 and __le32
variables.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2015-01-27 23:14:58 -06:00
Larry Finger
1038ee1874
rtl8188eu: Replace sNByte with appropriate s value
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-30 17:58:53 -06:00
Larry Finger
b77dd7b8df
rtl8188eu: Replace p1byte with u8
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-30 17:50:44 -06:00
Larry Finger
2d60bad9ad
rtl8188eu: FRemove dead code for other than USB
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-28 11:13:03 -06:00
Larry Finger
bb33327257
rtl8188eu: Remove all trailing spaces from code
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-19 00:59:46 -06:00
Larry Finger
202d20077c
rtl8192eu: Replace typedefs for struct adapter
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-17 17:13:53 -06:00
Larry Finger
494792ba07
rtl8188eu: Flatten directory hal/
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-16 22:09:56 -06:00
Larry Finger
065126d8ce
rtl8188eu: Place driver rtl8188EUS_rtl8189ES_linux_v4.1.8_9499.20131104 in branch v4.1.8_9499
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-11 15:15:04 -06:00
Larry Finger
bad0b4cde4
rtl8188eu: Remove cases of two or more blank lines
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2014-12-01 18:00:05 -06:00
Stas Sergeev
499e15d791
make firmware buffer persistent to not request firmware on every access
2014-02-14 13:46:49 -06:00
Larry Finger
19db43ecbd
rtl8188eu: Backport kernel version
...
This driver was added to the kernel with version 3.12. The changes in that
version are now brought back to the GitHub repo. Essentually all of the code
is updated.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-10-19 12:45:47 -05:00
Larry Finger
ab6511b485
rtl8188eu: Fix smatch warnings in hal/rtl8188e_hal_init.c, part 2
...
Smatch displays the following:
CHECK /home/finger/rtl8188eu/hal/rtl8188e_hal_init.c
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:1695 hal_EfusePgPacketWriteData() info: ignoring unreachable code.
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:2269 Hal_ReadPowerValueFromPROM_8188E() error: buffer overflow 'pwrInfo24G->IndexBW40_Base[rfPath]' 5 <= 5
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:2466 Hal_ReadTxPowerInfo88E() error: buffer overflow 'pHalData->Index24G_CCK_Base[rfPath]' 14 <= 14
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:2468 Hal_ReadTxPowerInfo88E() error: buffer overflow 'pHalData->Index24G_BW40_Base[rfPath]' 14 <= 14
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:2474 Hal_ReadTxPowerInfo88E() error: buffer overflow 'pHalData->Index24G_CCK_Base[rfPath]' 14 <= 14
/home/finger/rtl8188eu/hal/rtl8188e_hal_init.c:2475 Hal_ReadTxPowerInfo88E() error: buffer overflow 'pHalData->Index24G_BW40_Base[rfPath]' 14 <= 14
An editing error split this patch into two parts.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-09-05 22:33:51 -05:00
Larry Finger
9e9f54983f
rtl8188eu: Increase maximum RX gain
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-08-31 20:02:19 -05:00
Larry Finger
7120e63109
rtl8188eu: Fix chackpatch errors in include/*.h - part 2
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-08-14 22:03:17 -05:00
Larry Finger
2db42a3fbf
rtl8188eu: Convert non-standard variable types to regular ones
...
These include changing s1Byte to s8, etc.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-08-14 12:03:28 -05:00
Larry Finger
f9d86b986b
rtl8188eu: Fix C90 comments in include/*.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-08-11 23:36:23 -05:00
Larry Finger
a311b57c32
rtl8188eu: Fix remaining checkfile errors in hal/*.c
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-08-08 22:23:49 -05:00
Larry Finger
2bd2f4b4c8
rtl8188eu: Convert typedef for _adapter, etc.
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-26 20:08:39 -05:00
Larry Finger
ec5245f648
rtl8188eu: Convert typedef statements in include/rtw_rf.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-26 16:27:19 -05:00
Larry Finger
7161cf35ba
rtl8188eu: Convert typedef statements in include/rtl8188e_hal.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-26 15:54:27 -05:00
Larry Finger
7449a3d03b
rtl8188eu: Convert typedef statements in include/Hal8188EPhyCfg.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-26 13:36:38 -05:00
Larry Finger
f311a752bb
rtl8188eu: Convert all typedef statements in include/odm.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-26 11:20:42 -05:00
Larry Finger
7b01fe6191
rtl8188eu: Convert typedef for _lock to spinlock_t
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-24 15:00:47 -05:00
Larry Finger
548e42fb94
rtl8188eu: Convert "typedef HAL_DATA_TYPE" to "struct hal_data_8188e"
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-22 18:18:19 -05:00
Larry Finger
d2de492de6
rtl8188eu: Convert "typedef struct _EFUSE_HAL" to "struct efuse_hal"
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-22 17:59:49 -05:00
Larry Finger
c2a914a341
rtl8188eu: Convert typedef statements in include/HalVerDef.h
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-22 17:43:38 -05:00
Larry Finger
74c8d64df5
rtl8188eu: Remove CONFIG_EMBEDDED_FWIMG - defined
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-21 21:32:31 -05:00
Larry Finger
77e8428c33
rtl8188eu: Remove RTL8188ES_MAC_LOOPBACK - not defined
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-21 11:05:15 -05:00
Larry Finger
48b4d6056b
rtl8188eu: Remove CONFIG_RF_GAIN_OFFSET - not defined
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-21 10:53:26 -05:00
Larry Finger
44346186dd
rtl8188eu: Remove CONFIG_TX_EARLY_MODE - not defined
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-20 17:56:24 -05:00
Larry Finger
f50db5cd2c
rtl8188eu: Remove DBG_CONFIG_ERROR_DETECT
...
This variable is selected.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-19 17:05:40 -05:00
Larry Finger
fd62ad44a9
rtl8188eu: Remove CONFIG_USB_RX_AGGREGATION
...
This parameter is always defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-19 00:06:51 -05:00
Larry Finger
eebbb9babd
rtl8188eu: Remove CONFIG_USB_TX_AGGREGATION, IDEA_CONDITION, and CONFIG_MINIMAL_MEMORY_USAGE
...
CONFIG_USB_TX_AGGREGATION is always defined.
IDEA_CONDITION is always defined.
CONFIG_MINIMAL_MEMORY_USAGE is never defined.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-18 23:58:55 -05:00
Larry Finger
9ba4954378
rtl8188eu: Remove configuration variables CONFIG_IOL_XXX and associated dead code
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-14 11:21:05 -05:00
Larry Finger
0e4009c999
rtl8188eu: Remove dead code for other than USB
...
The vendor code has pieces of code for PCI, SDIO, and GSPI. Remove it
and CONFIG_USB_HCI.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-11 13:35:36 -05:00
Larry Finger
e5113c831c
rtl8188eu: Fix more sparse warnings
...
For the most part, these are all endian issues.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-07-09 17:40:50 -05:00
Larry Finger
9cef34aa09
rtl8188eu: Change _FALSE and _TRUE to false and true
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-05-25 22:02:10 -05:00
Larry Finger
d597e07a9e
rtl8188eu: More cleanups of code
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-05-25 15:45:50 -05:00
Larry Finger
3535ad59e3
rtl8188eu: Change BOOLEAN to bool
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-05-18 23:48:10 -05:00
Larry Finger
f5f3863bc5
rtl8188eu: Remove trailing white space from all source files
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-05-18 23:28:07 -05:00
Larry Finger
77e736c66a
rtl8188eu: Remove dead code inside #if 0 ... #endif
...
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2013-05-18 16:16:10 -05:00