mirror of
https://github.com/adulau/aha.git
synced 2025-01-04 07:03:38 +00:00
[PATCH] ipw2200: fix ->eeprom[EEPROM_VERSION] check
priv->eeprom is a pointer. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Acked-by: Yi Zhu <yi.zhu@intel.com> Cc: James Ketrenos <jketreno@linux.intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
ce5f8d70ba
commit
386093ef9a
1 changed files with 1 additions and 1 deletions
|
@ -2456,7 +2456,7 @@ static void ipw_eeprom_init_sram(struct ipw_priv *priv)
|
||||||
copy. Otherwise let the firmware know to perform the operation
|
copy. Otherwise let the firmware know to perform the operation
|
||||||
on it's own
|
on it's own
|
||||||
*/
|
*/
|
||||||
if ((priv->eeprom + EEPROM_VERSION) != 0) {
|
if (priv->eeprom[EEPROM_VERSION] != 0) {
|
||||||
IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
|
IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
|
||||||
|
|
||||||
/* write the eeprom data to sram */
|
/* write the eeprom data to sram */
|
||||||
|
|
Loading…
Reference in a new issue