Make this compile again if PCI_CONF_MODE is defined (unused label).
This commit is contained in:
parent
016d7b35dc
commit
753949629e
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pci_machdep.c,v 1.25 1996/10/13 03:20:23 christos Exp $ */
|
||||
/* $NetBSD: pci_machdep.c,v 1.26 1996/10/24 12:32:29 fvdl Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
|
||||
@ -115,7 +115,9 @@ pci_make_tag(pc, bus, device, function)
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 1)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode1:
|
||||
#endif
|
||||
if (bus >= 256 || device >= 32 || function >= 8)
|
||||
panic("pci_make_tag: bad request");
|
||||
|
||||
@ -125,7 +127,9 @@ mode1:
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 2)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode2:
|
||||
#endif
|
||||
if (bus >= 256 || device >= 16 || function >= 8)
|
||||
panic("pci_make_tag: bad request");
|
||||
|
||||
@ -156,7 +160,9 @@ pci_conf_read(pc, tag, reg)
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 1)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode1:
|
||||
#endif
|
||||
outl(PCI_MODE1_ADDRESS_REG, tag.mode1 | reg);
|
||||
data = inl(PCI_MODE1_DATA_REG);
|
||||
outl(PCI_MODE1_ADDRESS_REG, 0);
|
||||
@ -164,7 +170,9 @@ mode1:
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 2)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode2:
|
||||
#endif
|
||||
outb(PCI_MODE2_ENABLE_REG, tag.mode2.enable);
|
||||
outb(PCI_MODE2_FORWARD_REG, tag.mode2.forward);
|
||||
data = inl(tag.mode2.port | reg);
|
||||
@ -193,14 +201,18 @@ pci_conf_write(pc, tag, reg, data)
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 1)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode1:
|
||||
#endif
|
||||
outl(PCI_MODE1_ADDRESS_REG, tag.mode1 | reg);
|
||||
outl(PCI_MODE1_DATA_REG, data);
|
||||
outl(PCI_MODE1_ADDRESS_REG, 0);
|
||||
#endif
|
||||
|
||||
#if !defined(PCI_CONF_MODE) || (PCI_CONF_MODE == 2)
|
||||
#ifndef PCI_CONF_MODE
|
||||
mode2:
|
||||
#endif
|
||||
outb(PCI_MODE2_ENABLE_REG, tag.mode2.enable);
|
||||
outb(PCI_MODE2_FORWARD_REG, tag.mode2.forward);
|
||||
outl(tag.mode2.port | reg, data);
|
||||
|
Loading…
Reference in New Issue
Block a user