Lines Matching defs:tmp8
558 u8 tmp8;
560 pci_read_config_byte(pdev, 0x52, &tmp8);
561 pci_write_config_byte(pdev, 0x52, tmp8 | BIT(2));
619 u8 tmp8;
621 pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8);
623 (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f);
626 pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8);
627 if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
629 (int)tmp8);
630 tmp8 |= ALL_PORTS;
631 pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8);
635 pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8);
636 if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
638 (int) tmp8);
639 tmp8 |= ALL_PORTS;
640 pci_write_config_byte(pdev, SATA_INT_GATE, tmp8);
644 pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8);
645 if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) {
648 (int) tmp8);
649 tmp8 |= NATIVE_MODE_ALL;
650 pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8);
655 pci_read_config_byte(pdev, SVIA_MISC_3, &tmp8);
656 if ((tmp8 & SATA_HOTPLUG) != SATA_HOTPLUG) {
659 (int) tmp8);
660 tmp8 |= SATA_HOTPLUG;
661 pci_write_config_byte(pdev, SVIA_MISC_3, tmp8);