Lines Matching defs:where
48 static int mkaddr(struct pci_bus *bus, unsigned char devfn, unsigned char where)
56 (where & 0xfc) | (bus->parent ? 1 : 0);
77 int where, int size, u32 * val)
79 if (mkaddr(bus, devfn, where)) {
86 *val = *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3));
90 *val = le16_to_cpu(*(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)));
102 int where, int size, u32 val)
104 if (mkaddr(bus, devfn, where))
109 *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)) = val;
113 *(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 2)) =