mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 16:44:20 +00:00
rtl8188eu: Remove useless IN and OUT from parameter lists
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
460e260891
commit
d26bbefc3a
42 changed files with 1379 additions and 1410 deletions
|
@ -73,11 +73,11 @@ void dump_chip_info(HAL_VERSION ChipVersion)
|
|||
|
||||
u8 /* return the final channel plan decision */
|
||||
hal_com_get_channel_plan(
|
||||
IN struct adapter *padapter,
|
||||
IN u8 hw_channel_plan, /* channel plan from HW (efuse/eeprom) */
|
||||
IN u8 sw_channel_plan, /* channel plan from SW (registry/module param) */
|
||||
IN u8 def_channel_plan, /* channel plan used when the former two is invalid */
|
||||
IN bool AutoLoadFail
|
||||
struct adapter *padapter,
|
||||
u8 hw_channel_plan, /* channel plan from HW (efuse/eeprom) */
|
||||
u8 sw_channel_plan, /* channel plan from SW (registry/module param) */
|
||||
u8 def_channel_plan, /* channel plan used when the former two is invalid */
|
||||
bool AutoLoadFail
|
||||
)
|
||||
{
|
||||
u8 swConfig;
|
||||
|
@ -140,9 +140,9 @@ u8 MRateToHwRate(u8 rate)
|
|||
}
|
||||
|
||||
void HalSetBrateCfg(
|
||||
IN struct adapter * Adapter,
|
||||
IN u8 *mBratesOS,
|
||||
OUT u16 *pBrateCfg)
|
||||
struct adapter * Adapter,
|
||||
u8 *mBratesOS,
|
||||
u16 *pBrateCfg)
|
||||
{
|
||||
u8 i, is_brate, brate;
|
||||
|
||||
|
@ -174,7 +174,7 @@ void HalSetBrateCfg(
|
|||
|
||||
static void
|
||||
_OneOutPipeMapping(
|
||||
IN struct adapter *pAdapter
|
||||
struct adapter *pAdapter
|
||||
)
|
||||
{
|
||||
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(pAdapter);
|
||||
|
@ -192,8 +192,8 @@ _OneOutPipeMapping(
|
|||
|
||||
static void
|
||||
_TwoOutPipeMapping(
|
||||
IN struct adapter *pAdapter,
|
||||
IN bool bWIFICfg
|
||||
struct adapter *pAdapter,
|
||||
bool bWIFICfg
|
||||
)
|
||||
{
|
||||
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(pAdapter);
|
||||
|
@ -237,8 +237,8 @@ _TwoOutPipeMapping(
|
|||
}
|
||||
|
||||
static void _ThreeOutPipeMapping(
|
||||
IN struct adapter *pAdapter,
|
||||
IN bool bWIFICfg
|
||||
struct adapter *pAdapter,
|
||||
bool bWIFICfg
|
||||
)
|
||||
{
|
||||
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(pAdapter);
|
||||
|
@ -282,8 +282,8 @@ static void _ThreeOutPipeMapping(
|
|||
|
||||
bool
|
||||
Hal_MappingOutPipe(
|
||||
IN struct adapter *pAdapter,
|
||||
IN u8 NumOutPipe
|
||||
struct adapter *pAdapter,
|
||||
u8 NumOutPipe
|
||||
)
|
||||
{
|
||||
struct registry_priv *pregistrypriv = &pAdapter->registrypriv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue