Commit ad3f086c authored by Michael Buesch's avatar Michael Buesch Committed by John W. Linville

[PATCH] bcm43xx: make bcm43xx_sprom_crc() static.

Signed-off-by: default avatarMichael Buesch <mbuesch@freenet.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ea0922b0
...@@ -901,7 +901,7 @@ static inline u8 bcm43xx_crc8(u8 crc, u8 data) ...@@ -901,7 +901,7 @@ static inline u8 bcm43xx_crc8(u8 crc, u8 data)
return t[crc ^ data]; return t[crc ^ data];
} }
u8 bcm43xx_sprom_crc(const u16 *sprom) static u8 bcm43xx_sprom_crc(const u16 *sprom)
{ {
int word; int word;
u8 crc = 0xFF; u8 crc = 0xFF;
......
...@@ -276,8 +276,6 @@ int bcm43xx_pci_write_config_32(struct pci_dev *pdev, int offset, u32 val); ...@@ -276,8 +276,6 @@ int bcm43xx_pci_write_config_32(struct pci_dev *pdev, int offset, u32 val);
void bcm43xx_mac_suspend(struct bcm43xx_private *bcm); void bcm43xx_mac_suspend(struct bcm43xx_private *bcm);
void bcm43xx_mac_enable(struct bcm43xx_private *bcm); void bcm43xx_mac_enable(struct bcm43xx_private *bcm);
u8 bcm43xx_sprom_crc(const u16 *sprom);
void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason); void bcm43xx_controller_restart(struct bcm43xx_private *bcm, const char *reason);
int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom); int bcm43xx_sprom_read(struct bcm43xx_private *bcm, u16 *sprom);
......
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