diff options
Diffstat (limited to 'xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c')
-rw-r--r-- | xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c b/xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c index 49d01331b..e3a0b7e5c 100644 --- a/xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c +++ b/xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c,v 1.1 1999/03/28 15:32:57 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/sparcPci.c,v 1.2 2000/04/04 19:25:19 dawes Exp $ */ /* * Copyright 1998 by Concurrent Computer Corporation * @@ -101,7 +101,7 @@ sparcPciInit() CARD32 sparcPciCfgRead(PCITAG tag, int off) { - int bus, dfn, len; + int bus, dfn; CARD32 val = 0xffffffff; bus = PCI_BUS_FROM_TAG(tag); @@ -114,7 +114,7 @@ sparcPciCfgRead(PCITAG tag, int off) void sparcPciCfgWrite(PCITAG tag, int off, CARD32 val) { - int bus, dfn, len; + int bus, dfn; bus = PCI_BUS_FROM_TAG(tag); dfn = PCI_DFN_FROM_TAG(tag); @@ -125,7 +125,7 @@ sparcPciCfgWrite(PCITAG tag, int off, CARD32 val) void sparcPciCfgSetBits(PCITAG tag, int off, CARD32 mask, CARD32 bits) { - int bus, dfn, len; + int bus, dfn; CARD32 val = 0xffffffff; bus = PCI_BUS_FROM_TAG(tag); |