Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev

* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:
ahci: Add ifdef wrapper to ahci_gtf_filter_workaround

+5
+5
drivers/ata/ahci.c
··· 2884 2884 return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff); 2885 2885 } 2886 2886 2887 + #ifdef CONFIG_ATA_ACPI 2887 2888 static void ahci_gtf_filter_workaround(struct ata_host *host) 2888 2889 { 2889 2890 static const struct dmi_system_id sysids[] = { ··· 2928 2927 dev->gtf_filter |= filter; 2929 2928 } 2930 2929 } 2930 + #else 2931 + static inline void ahci_gtf_filter_workaround(struct ata_host *host) 2932 + {} 2933 + #endif 2931 2934 2932 2935 static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) 2933 2936 {