Commit eef74d4a authored by Michael Welling's avatar Michael Welling Committed by Greg Kroah-Hartman

STAGING: cxt1e1: More formatting fixes

Removes parens as are not necessary for return.
Signed-off-by: default avatarMichael Welling <mwelling@ieee.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63809f5e
...@@ -334,7 +334,7 @@ static int pmc_eeprom_write(long addr, long mem_offset, u_int32_t data) ...@@ -334,7 +334,7 @@ static int pmc_eeprom_write(long addr, long mem_offset, u_int32_t data)
if (temp & EPROM_ACTIVE_IN_BIT) { if (temp & EPROM_ACTIVE_IN_BIT) {
/* Remove Chip Select from EEPROM */ /* Remove Chip Select from EEPROM */
pci_write_32((u_int32_t *) addr, 0); pci_write_32((u_int32_t *) addr, 0);
return (1); return 1;
} }
} }
count = 1000; count = 1000;
...@@ -347,9 +347,9 @@ static int pmc_eeprom_write(long addr, long mem_offset, u_int32_t data) ...@@ -347,9 +347,9 @@ static int pmc_eeprom_write(long addr, long mem_offset, u_int32_t data)
} }
if (count == -1) if (count == -1)
return (2); return 2;
return (0); return 0;
} }
/*------------------------------------------------------------------------ /*------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment