Lines Matching refs:sioaddr
1338 static int __init nct6683_find(int sioaddr, struct nct6683_sio_data *sio_data) in nct6683_find() argument
1344 err = superio_enter(sioaddr); in nct6683_find()
1348 val = (superio_inb(sioaddr, SIO_REG_DEVID) << 8) in nct6683_find()
1349 | superio_inb(sioaddr, SIO_REG_DEVID + 1); in nct6683_find()
1362 superio_select(sioaddr, NCT6683_LD_HWM); in nct6683_find()
1363 val = (superio_inb(sioaddr, SIO_REG_ADDR) << 8) in nct6683_find()
1364 | superio_inb(sioaddr, SIO_REG_ADDR + 1); in nct6683_find()
1372 val = superio_inb(sioaddr, SIO_REG_ENABLE); in nct6683_find()
1375 superio_outb(sioaddr, SIO_REG_ENABLE, val | 0x01); in nct6683_find()
1378 superio_exit(sioaddr); in nct6683_find()
1380 nct6683_chip_names[sio_data->kind], sioaddr, addr); in nct6683_find()
1381 sio_data->sioreg = sioaddr; in nct6683_find()
1386 superio_exit(sioaddr); in nct6683_find()
1401 int sioaddr[2] = { 0x2e, 0x4e }; in sensors_nct6683_init() local
1419 address = nct6683_find(sioaddr[i], &sio_data); in sensors_nct6683_init()