Lines Matching refs:tmp8

537 	u8 tmp8;  in svia_wd_fix()  local
539 pci_read_config_byte(pdev, 0x52, &tmp8); in svia_wd_fix()
540 pci_write_config_byte(pdev, 0x52, tmp8 | BIT(2)); in svia_wd_fix()
597 u8 tmp8; in svia_configure() local
599 pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8); in svia_configure()
601 (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f); in svia_configure()
604 pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8); in svia_configure()
605 if ((tmp8 & ALL_PORTS) != ALL_PORTS) { in svia_configure()
607 (int)tmp8); in svia_configure()
608 tmp8 |= ALL_PORTS; in svia_configure()
609 pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8); in svia_configure()
613 pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8); in svia_configure()
614 if ((tmp8 & ALL_PORTS) != ALL_PORTS) { in svia_configure()
616 (int) tmp8); in svia_configure()
617 tmp8 |= ALL_PORTS; in svia_configure()
618 pci_write_config_byte(pdev, SATA_INT_GATE, tmp8); in svia_configure()
622 pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8); in svia_configure()
623 if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) { in svia_configure()
626 (int) tmp8); in svia_configure()
627 tmp8 |= NATIVE_MODE_ALL; in svia_configure()
628 pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8); in svia_configure()
633 pci_read_config_byte(pdev, SVIA_MISC_3, &tmp8); in svia_configure()
634 if ((tmp8 & SATA_HOTPLUG) != SATA_HOTPLUG) { in svia_configure()
637 (int) tmp8); in svia_configure()
638 tmp8 |= SATA_HOTPLUG; in svia_configure()
639 pci_write_config_byte(pdev, SVIA_MISC_3, tmp8); in svia_configure()