Home | History | Annotate | Download | only in pci

Lines Matching defs:pbnum

99 	int bcreg, pbnum;
111 pbnum = PCISET_BRIDGE_NUMBER(bcreg);
112 if (pbnum != 0xff)
113 return pbnum + 1;
120 pbnum = 0;
128 pbnum = ((bcreg & 0x0000ff00) >> 8) + 1;
134 pbnum = (bcreg & 0xff000000) >> 24;
140 pbnum = (bcreg & 0x000000ff) + 1;
143 return pbnum;
157 u_char bdnum, pbnum = 0; /* XXX: gcc */
181 pbnum = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x44) & 0xff;
183 if (pbnum == 0)
240 pbnum = PCISET_BRIDGE_NUMBER(bcreg);
241 if (pbnum != 0xff) {
242 pbnum++;
280 pbnum = PCISET_PCI_BUS_NUMBER(bcreg);
288 "Compatibility PB (bus %d)\n", pbnum);
292 "Auxiliary PB (bus %d)\n",pbnum);
329 pbnum = 0;
337 pbnum = ((bcreg & 0x0000ff00) >> 8) + 1;
343 pbnum = (bcreg & 0xff000000) >> 24;
349 pbnum = (bcreg & 0x000000ff) + 1;
352 if (pbnum != 0)
431 pba.pba_bus = pbnum;