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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/i2c/busses/
H A Di2c-ali15x3.c124 /* If force_addr is set to anything different from 0, we forcibly enable
126 static u16 force_addr; variable
127 module_param(force_addr, ushort, 0);
128 MODULE_PARM_DESC(force_addr,
159 if (ali15x3_smba == 0 && force_addr == 0) {
161 "- upgrade BIOS or use force_addr=0xaddr\n");
165 if(force_addr)
166 ali15x3_smba = force_addr & ~(ALI15X3_SMB_IOSIZE - 1);
180 if(force_addr) {
H A Di2c-sis5595.c123 /* If force_addr is set to anything different from 0, we forcibly enable
125 static u16 force_addr; variable
126 module_param(force_addr, ushort, 0);
127 MODULE_PARM_DESC(force_addr, "Initialize the base address of the i2c controller");
165 if (sis5595_base == 0 && force_addr == 0) {
166 dev_err(&SIS5595_dev->dev, "ACPI base address uninitialized - upgrade BIOS or use force_addr=0xaddr\n");
170 if (force_addr)
171 sis5595_base = force_addr & ~(SIS5595_EXTENT - 1);
188 if (force_addr) {
H A Di2c-piix4.c89 /* If force_addr is set to anything different from 0, we forcibly enable
91 static int force_addr; variable
92 module_param (force_addr, int, 0);
93 MODULE_PARM_DESC(force_addr,
157 if (force_addr) {
158 piix4_smba = force_addr & 0xfff0;
166 "force_addr=0xaddr\n");
182 /* If force_addr is set, we program the new address here. Just to make
184 if (force_addr) {
237 if (force || force_addr) {
[all...]
H A Di2c-viapro.c98 /* If force_addr is set to anything different from 0, we forcibly enable
100 static u16 force_addr; variable
101 module_param(force_addr, ushort, 0);
102 MODULE_PARM_DESC(force_addr,
336 if (force_addr) {
337 vt596_smba = force_addr & 0xfff0;
361 "force_addr=0xaddr\n");
377 /* If force_addr is set, we program the new address here. Just to make
379 if (force_addr) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hwmon/
H A Dsis5595.c69 /* If force_addr is set to anything different from 0, we forcibly enable
71 static u16 force_addr; variable
72 module_param(force_addr, ushort, 0);
73 MODULE_PARM_DESC(force_addr,
780 force_addr &= ~(SIS5595_EXTENT - 1);
781 if (force_addr) {
782 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr);
783 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr);
794 dev_err(&dev->dev, "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
797 if (force_addr
[all...]
H A Dvia686a.c48 /* If force_addr is set to anything different from 0, we forcibly enable
50 static unsigned short force_addr; variable
51 module_param(force_addr, ushort, 0);
52 MODULE_PARM_DESC(force_addr,
833 if (force_addr) {
834 address = force_addr & ~(VIA686A_EXTENT - 1);
847 "or use force_addr=0xaddr\n");
855 if (!force_addr) {
857 "with force_addr=0x%x\n", address);
H A Dvt8231.c41 static int force_addr; variable
42 module_param(force_addr, int, 0);
43 MODULE_PARM_DESC(force_addr, "Initialize the base address of the sensors");
935 if (force_addr) {
936 address = force_addr & 0xff00;
951 dev_err(&dev->dev, "base address not set - upgrade BIOS or use force_addr=0xaddr\n");

Completed in 96 milliseconds