Symbol: A_IOCFG
sound/pci/emu10k1/emu10k1_main.c
1752
emu->saved_a_iocfg = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
1779
outw(emu->saved_a_iocfg, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
221
tmp = inw(emu->port + A_IOCFG) & ~0x8; /* Clear bit 3 */
sound/pci/emu10k1/emu10k1_main.c
222
outw(tmp, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
242
outw(0x76, emu->port + A_IOCFG); /* Windows uses 0x3f76 */
sound/pci/emu10k1/emu10k1_main.c
248
tmp = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
249
outw(tmp | 0x4, emu->port + A_IOCFG); /* Set bit 2 for mic input */
sound/pci/emu10k1/emu10k1_main.c
250
tmp = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
306
u16 reg = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
307
outw(reg | A_IOCFG_GPOUT2, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
309
outw(reg | A_IOCFG_GPOUT1 | A_IOCFG_GPOUT2, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
311
outw(reg, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
327
u16 reg = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
328
outw(reg | A_IOCFG_GPOUT0, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
352
outw(inw(emu->port + A_IOCFG) & ~0x44, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
358
outw(inw(emu->port + A_IOCFG) | 0x0040, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
361
outw(inw(emu->port + A_IOCFG) | 0x0060, emu->port + A_IOCFG);
sound/pci/emu10k1/emu10k1_main.c
364
outw(inw(emu->port + A_IOCFG) | 0x0080, emu->port + A_IOCFG);
sound/pci/emu10k1/emumixer.c
1208
gpio = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emumixer.c
1210
outw(gpio | 0x4, emu->port + A_IOCFG);
sound/pci/emu10k1/emumixer.c
1212
outw(gpio & ~0x4, emu->port + A_IOCFG);
sound/pci/emu10k1/emumixer.c
1857
ucontrol->value.integer.value[0] = inw(emu->port + A_IOCFG) & A_IOCFG_GPOUT0 ? 1 : 0;
sound/pci/emu10k1/emumixer.c
1881
reg = inw(emu->port + A_IOCFG);
sound/pci/emu10k1/emumixer.c
1887
outw(reg | val, emu->port + A_IOCFG);