mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
staging: rtl8188eu: remove hal_init_macaddr()
Function hal_init_macaddr() just calls rtw_hal_set_hwreg(). Use rtw_hal_set_hwreg() directly and remove hal_init_macaddr(). Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
08289a5604
commit
6faeb50503
|
|
@ -283,9 +283,3 @@ bool hal_mapping_out_pipe(struct adapter *adapter, u8 numoutpipe)
|
|||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
void hal_init_macaddr(struct adapter *adapter)
|
||||
{
|
||||
rtw_hal_set_hwreg(adapter, HW_VAR_MAC_ADDR,
|
||||
adapter->eeprompriv.mac_addr);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -746,7 +746,8 @@ u32 rtl8188eu_hal_init(struct adapter *Adapter)
|
|||
_InitDriverInfoSize(Adapter, DRVINFO_SZ);
|
||||
|
||||
_InitInterrupt(Adapter);
|
||||
hal_init_macaddr(Adapter);/* set mac_address */
|
||||
rtw_hal_set_hwreg(Adapter, HW_VAR_MAC_ADDR,
|
||||
Adapter->eeprompriv.mac_addr);
|
||||
_InitNetworkType(Adapter);/* set msr */
|
||||
_InitWMACSetting(Adapter);
|
||||
_InitAdaptiveCtrl(Adapter);
|
||||
|
|
|
|||
|
|
@ -148,5 +148,4 @@ void hal_set_brate_cfg(u8 *brates, u16 *rate_cfg);
|
|||
|
||||
bool hal_mapping_out_pipe(struct adapter *adapter, u8 numoutpipe);
|
||||
|
||||
void hal_init_macaddr(struct adapter *adapter);
|
||||
#endif /* __HAL_COMMON_H__ */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user