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

/linux-master/drivers/i2c/busses/
H A Di2c-sis5595.c111 /* If force_addr is set to anything different from 0, we forcibly enable
113 static u16 force_addr; variable
114 module_param_hw(force_addr, ushort, ioport, 0);
115 MODULE_PARM_DESC(force_addr, "Initialize the base address of the i2c controller");
153 if (sis5595_base == 0 && force_addr == 0) {
154 dev_err(&SIS5595_dev->dev, "ACPI base address uninitialized - upgrade BIOS or use force_addr=0xaddr\n");
158 if (force_addr)
159 sis5595_base = force_addr & ~(SIS5595_EXTENT - 1);
176 if (force_addr) {
H A Di2c-ali15x3.c111 /* If force_addr is set to anything different from 0, we forcibly enable
113 static u16 force_addr; variable
114 module_param_hw(force_addr, ushort, ioport, 0);
115 MODULE_PARM_DESC(force_addr,
146 if (ali15x3_smba == 0 && force_addr == 0) {
148 "- upgrade BIOS or use force_addr=0xaddr\n");
152 if(force_addr)
153 ali15x3_smba = force_addr & ~(ALI15X3_SMB_IOSIZE - 1);
167 if(force_addr) {
H A Di2c-viapro.c86 /* If force_addr is set to anything different from 0, we forcibly enable
88 static u16 force_addr; variable
89 module_param_hw(force_addr, ushort, ioport, 0);
90 MODULE_PARM_DESC(force_addr,
318 if (force_addr) {
319 vt596_smba = force_addr & 0xfff0;
343 "force_addr=0xaddr\n");
359 /* If force_addr is set, we program the new address here. Just to make
361 if (force_addr) {
H A Di2c-piix4.c112 /* If force_addr is set to anything different from 0, we forcibly enable
114 static int force_addr; variable
115 module_param_hw(force_addr, int, ioport, 0);
116 MODULE_PARM_DESC(force_addr,
270 if (force_addr) {
271 piix4_smba = force_addr & 0xfff0;
279 "force_addr=0xaddr\n");
295 /* If force_addr is set, we program the new address here. Just to make
297 if (force_addr) {
398 if (force || force_addr) {
[all...]
/linux-master/drivers/hwmon/
H A Dsis5595.c59 * If force_addr is set to anything different from 0, we forcibly enable
62 static u16 force_addr; variable
63 module_param(force_addr, ushort, 0);
64 MODULE_PARM_DESC(force_addr,
809 force_addr &= ~(SIS5595_EXTENT - 1);
810 if (force_addr) {
811 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr);
812 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr);
824 "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
827 if (force_addr
[all...]
H A Dvia686a.c40 * If force_addr is set to anything different from 0, we forcibly enable
43 static unsigned short force_addr; variable
44 module_param(force_addr, ushort, 0);
45 MODULE_PARM_DESC(force_addr,
858 if (force_addr) {
859 address = force_addr & ~(VIA686A_EXTENT - 1);
872 "base address not set - upgrade BIOS or use force_addr=0xaddr\n");
880 if (!force_addr) {
882 "Sensors disabled, enable with force_addr=0x%x\n",
H A Dvt8231.c30 static int force_addr; variable
31 module_param(force_addr, int, 0);
32 MODULE_PARM_DESC(force_addr, "Initialize the base address of the sensors");
974 if (force_addr) {
975 address = force_addr & 0xff00;
990 dev_err(&dev->dev, "base address not set - upgrade BIOS or use force_addr=0xaddr\n");

Completed in 280 milliseconds