• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/pci/

Lines Matching refs:where

129 	unsigned char where = 0; /* Write to static Device/Vendor ID */
158 (where & 0xFC);
362 * where - address within the Configuration Header
378 unsigned char where,
445 (where & 0xFC);
505 * where - register within the Configuration Header space
517 int where,
528 where, &data)) {
533 *val = (data >> ((where & 3) << 3)) & 0x0ff;
552 * where - register within the Configuration Header space
565 int where,
570 /* if (where & 1) */ /* Commented out non-compliant code.
576 if ((where & 3) == 3) {
587 where, &data)) {
592 *val = (data >> ((where & 3) << 3)) & 0x0ffff;
609 * where - register within the Configuration Header space
622 int where,
628 if (where & 3) {
639 where, &data)) {
662 * where - register within the Configuration Header space
675 int where,
682 where, &data))
686 data = (data & ~(0xff << ((where & 3) << 3))) |
687 (val << ((where & 3) << 3));
691 where, &data))
710 * where - register within the Configuration Header space
724 int where,
729 /* Fixed non-compliance: if (where & 1) */
730 if ((where & 3) == 3)
735 where, &data))
739 data = (data & ~(0xffff << ((where & 3) << 3))) |
740 (val << ((where & 3) << 3));
744 where, &data))
762 * where - register within the Configuration Header space
776 int where,
780 if (where & 3)
785 where, &val))
804 * where - register within the Configuration Header space
818 int where,
823 if (msp_pcibios_read_config_byte(bus, devfn, where, val)) {
827 if (msp_pcibios_read_config_word(bus, devfn, where, val)) {
831 if (msp_pcibios_read_config_dword(bus, devfn, where, val)) {
855 * where - register within the Configuration Header space
869 int where,
875 where, (u8)(0xFF & val))) {
880 where, (u16)(0xFFFF & val))) {
884 if (msp_pcibios_write_config_dword(bus, devfn, where, val)) {