[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:
committed by
Linus Torvalds
parent
ce5f8d70ba
commit
386093ef9a
@@ -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 */
|
||||||
|
Reference in New Issue
Block a user