Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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>
  • Loading branch information
Shao Miller authored and Marty Connor committed Oct 18, 2009
1 parent 78e5442 commit 389eefd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/net/sis190.c
Expand Up @@ -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;
Expand Down

0 comments on commit 389eefd

Please sign in to comment.