Re: where the hell is pci_read_config_xyz defined

Grant Erickson (erick205@umn.edu)
Thu, 29 Nov 2001 10:24:08 -0600 (CST)


On 29 Nov 2001, Daniel Stodden wrote:
> i hope this question is not too stupid, but i think i've grepped all
> through it now.
>
> i see the prototype in linux/pci.h
> i looked at i386/kernel/pci-pc.c.
> i see the bios/direct access diversion. i don't see (*pci_config_read)()
> referenced elsewhere except within the acpi stuff.
> i looked at drivers/pci/*
> i even consulted lxr. nyet. nada.
>
> giving up now. any hint would be greatly appreciated. am i blind?

This is a common question I think. Try looking for the following in
drivers/pci/pci.c:

#define PCI_OP(rw,size,type) \
int pci_##rw##_config_##size (struct pci_dev *dev, int pos, type value) \
{ \
[ ... ]
}

PCI_OP(read, byte, u8 *)
PCI_OP(read, word, u16 *)
PCI_OP(read, dword, u32 *)
PCI_OP(write, byte, u8)
PCI_OP(write, word, u16)
PCI_OP(write, dword, u32)

Regards,

Grant Erickson

-- 
 Grant Erickson                       University of Minnesota Alumni
  o mail:erick205@umn.edu                                 1996 BSEE
  o http://www.umn.edu/~erick205                          1998 MSEE

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/