Lines Matching defs:conf
118 u8 conf;
122 conf = timing >> 8;
124 conf = timing & 0xFF;
126 pci_write_config_byte(dev, 0x54 + 4 * channel, conf);
144 u8 unit = drive->dn & 1, conf;
148 conf = timing >> 8;
150 conf = timing & 0xFF;
153 pci_write_config_byte(dev, 0x56 + 4 * channel + unit, conf);
155 pci_write_config_byte(dev, 0x56 + 4 * channel, conf);
156 pci_write_config_byte(dev, 0x56 + 4 * channel + 1, conf);
286 u8 unit = drive->dn & 1, channel = hwif->channel, conf;
297 pci_read_config_byte(dev, 0x50, &conf);
299 conf |= channel ? 0x60: 0x18;
301 conf |= 1 << (3 + 2 * channel + unit);
302 pci_write_config_byte(dev, 0x50, conf);
323 u8 unit = drive->dn & 1, channel = hwif->channel, conf;
336 pci_read_config_byte(dev, 0x50, &conf);
338 conf &= channel ? 0x9F: 0xE7;
340 conf &= ~ (1 << (3 + 2 * channel + unit));
341 pci_write_config_byte(dev, 0x50, conf);
537 u8 conf;
541 pci_read_config_byte(dev, 0x50, &conf);
542 if (conf & 1) {
551 if (conf & (1 << (1 + hwif->channel)))
610 u8 conf;
619 pci_read_config_byte(dev, 0x50, &conf);
621 pci_name(dev), mode[conf & 1]);