david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[sis190] Fix for gcc-3.3.3 compilation

gcc 3.3.3 gave the following error when compiling sis190.c

drivers/net/sis190.c: In function 'sis190_get_mac_addr_from_apc':
drivers/net/sis190.c:966: warning: 'isa_bridge' might be used
uninitialized in this function
make: *** [bin/sis190.o] Error 1

This patch allows error-free compilation.

Signed-off-by: Marty Connor <mdc@etherboot.org>
This commit is contained in:
Shao Miller 2009-10-17 21:53:36 -04:00 committed by Marty Connor
parent 78e54426c0
commit 389eefd0cd
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ static int sis190_get_mac_addr_from_apc(struct pci_device *pdev,
struct net_device *dev)
{
struct sis190_private *tp = netdev_priv(dev);
struct pci_device *isa_bridge;
struct pci_device *isa_bridge = NULL;
struct device *d;
u8 reg, tmp8;
unsigned int i;