use_mmio          792 drivers/net/ethernet/3com/3c59x.c static int use_mmio[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
use_mmio          820 drivers/net/ethernet/3com/3c59x.c module_param_array(use_mmio, int, NULL, 0);
use_mmio          837 drivers/net/ethernet/3com/3c59x.c MODULE_PARM_DESC(use_mmio, "3c59x: use memory-mapped PCI I/O resource (0-1)");
use_mmio         1013 drivers/net/ethernet/3com/3c59x.c 	if (global_use_mmio < 0 && (unit >= MAX_UNITS || use_mmio[unit] < 0)) {
use_mmio         1017 drivers/net/ethernet/3com/3c59x.c 	} else if (unit < MAX_UNITS && use_mmio[unit] >= 0)
use_mmio         1018 drivers/net/ethernet/3com/3c59x.c 		pci_bar = use_mmio[unit] ? 1 : 0;
use_mmio           54 drivers/net/ethernet/3com/typhoon.c static unsigned int use_mmio = 2;
use_mmio          137 drivers/net/ethernet/3com/typhoon.c MODULE_PARM_DESC(use_mmio, "Use MMIO (1) or PIO(0) to access the NIC. "
use_mmio          140 drivers/net/ethernet/3com/typhoon.c module_param(use_mmio, int, 0);
use_mmio          314 drivers/net/ethernet/3com/typhoon.c 	do { if(likely(use_mmio)) ioread32(x+TYPHOON_REG_HEARTBEAT); } while(0)
use_mmio         2335 drivers/net/ethernet/3com/typhoon.c 	if(use_mmio != 0 && use_mmio != 1)
use_mmio         2336 drivers/net/ethernet/3com/typhoon.c 		use_mmio = typhoon_test_mmio(pdev);
use_mmio         2338 drivers/net/ethernet/3com/typhoon.c 	ioaddr = pci_iomap(pdev, use_mmio, 128);
use_mmio         2467 drivers/net/ethernet/3com/typhoon.c 		    use_mmio ? "MMIO" : "IO",
use_mmio         2468 drivers/net/ethernet/3com/typhoon.c 		    (unsigned long long)pci_resource_start(pdev, use_mmio),