check the method pointer before invoking ah_eepromDetach as it can
be null if attach work fails before hooking up the eeprom support Obtained from: madwifi
This commit is contained in:
parent
3d066da098
commit
72be4f0804
@ -333,8 +333,10 @@ struct ath_hal_private {
|
||||
#define ath_hal_disablePCIE(_ah) \
|
||||
(_ah)->ah_disablePCIE(_ah)
|
||||
|
||||
#define ath_hal_eepromDetach(_ah) \
|
||||
AH_PRIVATE(_ah)->ah_eepromDetach(_ah)
|
||||
#define ath_hal_eepromDetach(_ah) do { \
|
||||
if (AH_PRIVATE(_ah)->ah_eepromDetach != AH_NULL) \
|
||||
AH_PRIVATE(_ah)->ah_eepromDetach(_ah); \
|
||||
} while (0)
|
||||
#define ath_hal_eepromGet(_ah, _param, _val) \
|
||||
AH_PRIVATE(_ah)->ah_eepromGet(_ah, _param, _val)
|
||||
#define ath_hal_eepromSet(_ah, _param, _val) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user