These don't need to be semi-public after all.

This commit is contained in:
Warner Losh 2003-02-17 19:47:02 +00:00
parent 016f481986
commit 180811460d
2 changed files with 5 additions and 5 deletions

View File

@ -78,6 +78,9 @@ static int pci_describe_parse_line(char **ptr, int *vendor,
int *device, char **desc);
static char *pci_describe_device(device_t dev);
static int pci_modevent(module_t mod, int what, void *arg);
static void pci_hdrtypedata(device_t pcib, int b, int s, int f,
pcicfgregs *cfg);
static void pci_read_extcap(device_t pcib, pcicfgregs *cfg);
static device_method_t pci_methods[] = {
/* Device interface */
@ -291,7 +294,7 @@ pci_fixancient(pcicfgregs *cfg)
/* extract header type specific config data */
void
static void
pci_hdrtypedata(device_t pcib, int b, int s, int f, pcicfgregs *cfg)
{
#define REG(n, w) PCIB_READ_CONFIG(pcib, b, s, f, n, w)
@ -389,7 +392,7 @@ pci_read_device(device_t pcib, int b, int s, int f, size_t size)
#undef REG
}
void
static void
pci_read_extcap(device_t pcib, pcicfgregs *cfg)
{
#define REG(n, w) PCIB_READ_CONFIG(pcib, cfg->bus, cfg->slot, cfg->func, n, w)

View File

@ -68,7 +68,4 @@ struct pci_devinfo *pci_read_device(device_t pcib, int b, int s, int f,
size_t size);
void pci_print_verbose(struct pci_devinfo *dinfo);
int pci_freecfg(struct pci_devinfo *dinfo);
void pci_hdrtypedata(device_t pcib, int b, int s, int f,
pcicfgregs *cfg);
void pci_read_extcap(device_t pcib, pcicfgregs *cfg);
#endif /* _PCI_PRIVATE_H_ */