diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-07-12 07:04:22 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-07-13 03:24:51 -0400 |
commit | 707a605b5a1732e548f4ff51ccf0199a14d95f0f (patch) | |
tree | c150d673008ce0ef69e2f19206fc84d541deb6a4 | |
parent | 06a3fcc44d98d6b05afeeae2fbb32938dc3233c7 (diff) |
x86/pci: Use MRFLD abbreviation for Merrifield
Everywhere in the kernel the MRFLD is used as abbreviation of Intel Merrifield.
Do the same in intel_mid_pci.c module.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1468321462-136016-1-git-send-email-andriy.shevchenko@linux.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/pci/intel_mid_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/pci/intel_mid_pci.c b/arch/x86/pci/intel_mid_pci.c index 5413d6a9817c..5a18aedcb341 100644 --- a/arch/x86/pci/intel_mid_pci.c +++ b/arch/x86/pci/intel_mid_pci.c | |||
@@ -36,8 +36,8 @@ | |||
36 | #define PCIE_CAP_OFFSET 0x100 | 36 | #define PCIE_CAP_OFFSET 0x100 |
37 | 37 | ||
38 | /* Quirks for the listed devices */ | 38 | /* Quirks for the listed devices */ |
39 | #define PCI_DEVICE_ID_INTEL_MRFL_MMC 0x1190 | 39 | #define PCI_DEVICE_ID_INTEL_MRFLD_MMC 0x1190 |
40 | #define PCI_DEVICE_ID_INTEL_MRFL_HSU 0x1191 | 40 | #define PCI_DEVICE_ID_INTEL_MRFLD_HSU 0x1191 |
41 | 41 | ||
42 | /* Fixed BAR fields */ | 42 | /* Fixed BAR fields */ |
43 | #define PCIE_VNDR_CAP_ID_FIXED_BAR 0x00 /* Fixed BAR (TBD) */ | 43 | #define PCIE_VNDR_CAP_ID_FIXED_BAR 0x00 /* Fixed BAR (TBD) */ |
@@ -229,7 +229,7 @@ static int intel_mid_pci_irq_enable(struct pci_dev *dev) | |||
229 | * Skip HS UART common registers device since it has | 229 | * Skip HS UART common registers device since it has |
230 | * IRQ0 assigned and not used by the kernel. | 230 | * IRQ0 assigned and not used by the kernel. |
231 | */ | 231 | */ |
232 | if (dev->device == PCI_DEVICE_ID_INTEL_MRFL_HSU) | 232 | if (dev->device == PCI_DEVICE_ID_INTEL_MRFLD_HSU) |
233 | return -EBUSY; | 233 | return -EBUSY; |
234 | /* | 234 | /* |
235 | * TNG has IRQ0 assigned to eMMC controller. But there | 235 | * TNG has IRQ0 assigned to eMMC controller. But there |
@@ -238,7 +238,7 @@ static int intel_mid_pci_irq_enable(struct pci_dev *dev) | |||
238 | * eMMC gets it. The rest of devices still could be | 238 | * eMMC gets it. The rest of devices still could be |
239 | * enabled without interrupt line being allocated. | 239 | * enabled without interrupt line being allocated. |
240 | */ | 240 | */ |
241 | if (dev->device != PCI_DEVICE_ID_INTEL_MRFL_MMC) | 241 | if (dev->device != PCI_DEVICE_ID_INTEL_MRFLD_MMC) |
242 | return 0; | 242 | return 0; |
243 | } | 243 | } |
244 | break; | 244 | break; |