Searched refs:force_addr (Results 1 - 7 of 7) sorted by relevance

/linux-4.4.14/drivers/i2c/busses/
H A Di2c-sis5595.c119 /* If force_addr is set to anything different from 0, we forcibly enable
121 static u16 force_addr; variable
122 module_param(force_addr, ushort, 0);
123 MODULE_PARM_DESC(force_addr, "Initialize the base address of the i2c controller");
161 if (sis5595_base == 0 && force_addr == 0) { sis5595_setup()
162 dev_err(&SIS5595_dev->dev, "ACPI base address uninitialized - upgrade BIOS or use force_addr=0xaddr\n"); sis5595_setup()
166 if (force_addr) sis5595_setup()
167 sis5595_base = force_addr & ~(SIS5595_EXTENT - 1); sis5595_setup()
184 if (force_addr) { sis5595_setup()
H A Di2c-ali15x3.c119 /* If force_addr is set to anything different from 0, we forcibly enable
121 static u16 force_addr; variable
122 module_param(force_addr, ushort, 0);
123 MODULE_PARM_DESC(force_addr,
154 if (ali15x3_smba == 0 && force_addr == 0) { ali15x3_setup()
156 "- upgrade BIOS or use force_addr=0xaddr\n"); ali15x3_setup()
160 if(force_addr) ali15x3_setup()
161 ali15x3_smba = force_addr & ~(ALI15X3_SMB_IOSIZE - 1); ali15x3_setup()
175 if(force_addr) { ali15x3_setup()
H A Di2c-viapro.c94 /* If force_addr is set to anything different from 0, we forcibly enable
96 static u16 force_addr; variable
97 module_param(force_addr, ushort, 0);
98 MODULE_PARM_DESC(force_addr,
326 if (force_addr) { vt596_probe()
327 vt596_smba = force_addr & 0xfff0; vt596_probe()
351 "force_addr=0xaddr\n"); vt596_probe()
367 /* If force_addr is set, we program the new address here. Just to make vt596_probe()
369 if (force_addr) { vt596_probe()
H A Di2c-piix4.c86 /* If force_addr is set to anything different from 0, we forcibly enable
88 static int force_addr; variable
89 module_param (force_addr, int, 0);
90 MODULE_PARM_DESC(force_addr,
157 if (force_addr) { piix4_setup()
158 piix4_smba = force_addr & 0xfff0; piix4_setup()
166 "force_addr=0xaddr\n"); piix4_setup()
182 /* If force_addr is set, we program the new address here. Just to make piix4_setup()
184 if (force_addr) { piix4_setup()
237 if (force || force_addr) { piix4_setup_sb800()
/linux-4.4.14/drivers/hwmon/
H A Dsis5595.c72 * If force_addr is set to anything different from 0, we forcibly enable
75 static u16 force_addr; variable
76 module_param(force_addr, ushort, 0);
77 MODULE_PARM_DESC(force_addr,
839 force_addr &= ~(SIS5595_EXTENT - 1); sis5595_pci_probe()
840 if (force_addr) { sis5595_pci_probe()
841 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr); sis5595_pci_probe()
842 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr); sis5595_pci_probe()
854 "Base address not set - upgrade BIOS or use force_addr=0xaddr\n"); sis5595_pci_probe()
857 if (force_addr && address != force_addr) { sis5595_pci_probe()
H A Dvia686a.c52 * If force_addr is set to anything different from 0, we forcibly enable
55 static unsigned short force_addr; variable
56 module_param(force_addr, ushort, 0);
57 MODULE_PARM_DESC(force_addr,
878 if (force_addr) { via686a_pci_probe()
879 address = force_addr & ~(VIA686A_EXTENT - 1); via686a_pci_probe()
892 "base address not set - upgrade BIOS or use force_addr=0xaddr\n"); via686a_pci_probe()
900 if (!force_addr) { via686a_pci_probe()
902 "Sensors disabled, enable with force_addr=0x%x\n", via686a_pci_probe()
H A Dvt8231.c44 static int force_addr; variable
45 module_param(force_addr, int, 0);
46 MODULE_PARM_DESC(force_addr, "Initialize the base address of the sensors");
991 if (force_addr) { vt8231_pci_probe()
992 address = force_addr & 0xff00; vt8231_pci_probe()
1007 dev_err(&dev->dev, "base address not set - upgrade BIOS or use force_addr=0xaddr\n"); vt8231_pci_probe()

Completed in 143 milliseconds