diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-10-09 12:35:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-10-09 12:35:50 -0400 |
commit | 084d3200d523fc24d95e97797b6cdf1256bf0d1b (patch) | |
tree | a9607d0792a82026c83a81eab53dff5e1131af09 | |
parent | 1442138372d19907473cfc82c37e8dd7c3359034 (diff) | |
parent | 8e5132175bebaa26f8ea5036a1e942686c11cab4 (diff) |
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
-rw-r--r-- | drivers/ata/ahci.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 4edca6eb73ae..b1a257746a19 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -2884,6 +2884,7 @@ static bool ahci_broken_online(struct pci_dev *pdev) | |||
2884 | return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff); | 2884 | return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff); |
2885 | } | 2885 | } |
2886 | 2886 | ||
2887 | #ifdef CONFIG_ATA_ACPI | ||
2887 | static void ahci_gtf_filter_workaround(struct ata_host *host) | 2888 | static void ahci_gtf_filter_workaround(struct ata_host *host) |
2888 | { | 2889 | { |
2889 | static const struct dmi_system_id sysids[] = { | 2890 | static const struct dmi_system_id sysids[] = { |
@@ -2927,6 +2928,10 @@ static void ahci_gtf_filter_workaround(struct ata_host *host) | |||
2927 | dev->gtf_filter |= filter; | 2928 | dev->gtf_filter |= filter; |
2928 | } | 2929 | } |
2929 | } | 2930 | } |
2931 | #else | ||
2932 | static inline void ahci_gtf_filter_workaround(struct ata_host *host) | ||
2933 | {} | ||
2934 | #endif | ||
2930 | 2935 | ||
2931 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | 2936 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
2932 | { | 2937 | { |