staging: rtl8188eu: rename Hal_MappingOutPipe() - style

Rename Hal_MappingOutPipe() to avoid CamelCase.
Hal_MappingOutPipe -> hal_mapping_out_pipe

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Straube 2018-10-14 12:17:41 +02:00 committed by Greg Kroah-Hartman
parent 30d046f2a7
commit 18e1aec859
3 changed files with 3 additions and 3 deletions

View File

@ -262,7 +262,7 @@ static void three_out_pipe(struct adapter *adapter, bool wifi_cfg)
}
}
bool Hal_MappingOutPipe(struct adapter *adapter, u8 numoutpipe)
bool hal_mapping_out_pipe(struct adapter *adapter, u8 numoutpipe)
{
struct registry_priv *pregistrypriv = &adapter->registrypriv;
bool wifi_cfg = (pregistrypriv->wifi_spec) ? true : false;

View File

@ -52,7 +52,7 @@ static bool HalUsbSetQueuePipeMapping8188EUsb(struct adapter *adapt, u8 NumInPip
/* All config other than above support one Bulk IN and one Interrupt IN. */
result = Hal_MappingOutPipe(adapt, NumOutPipe);
result = hal_mapping_out_pipe(adapt, NumOutPipe);
return result;
}

View File

@ -146,7 +146,7 @@ u8 MRateToHwRate(u8 rate);
void hal_set_brate_cfg(u8 *brates, u16 *rate_cfg);
bool Hal_MappingOutPipe(struct adapter *adapter, u8 numoutpipe);
bool hal_mapping_out_pipe(struct adapter *adapter, u8 numoutpipe);
void hal_init_macaddr(struct adapter *adapter);
#endif /* __HAL_COMMON_H__ */