This is a note to let you know that I've just added the patch titled

    x86, iosf: Add PCI ID macros for better readability

to the 3.14-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     x86-iosf-add-pci-id-macros-for-better-readability.patch
and it can be found in the queue-3.14 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 04725ad59474d24553d526fa774179ecd2922342 Mon Sep 17 00:00:00 2001
From: Ong Boon Leong <[email protected]>
Date: Fri, 9 May 2014 13:44:08 -0700
Subject: x86, iosf: Add PCI ID macros for better readability

From: Ong Boon Leong <[email protected]>

commit 04725ad59474d24553d526fa774179ecd2922342 upstream.

Introduce PCI IDs macro for the list of supported product:
BayTrail & Quark X1000.

Signed-off-by: Ong Boon Leong <[email protected]>
Link: 
http://lkml.kernel.org/r/[email protected]
Signed-off-by: David E. Box <[email protected]>
Signed-off-by: H. Peter Anvin <[email protected]>
Signed-off-by: Chang Rebecca Swee Fun <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 arch/x86/kernel/iosf_mbi.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

--- a/arch/x86/kernel/iosf_mbi.c
+++ b/arch/x86/kernel/iosf_mbi.c
@@ -25,6 +25,9 @@
 
 #include <asm/iosf_mbi.h>
 
+#define PCI_DEVICE_ID_BAYTRAIL         0x0F00
+#define PCI_DEVICE_ID_QUARK_X1000      0x0958
+
 static DEFINE_SPINLOCK(iosf_mbi_lock);
 
 static inline u32 iosf_mbi_form_mcr(u8 op, u8 port, u8 offset)
@@ -200,8 +203,8 @@ static int iosf_mbi_probe(struct pci_dev
 }
 
 static DEFINE_PCI_DEVICE_TABLE(iosf_mbi_pci_ids) = {
-       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0F00) },
-       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0958) },
+       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BAYTRAIL) },
+       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_QUARK_X1000) },
        { 0, },
 };
 MODULE_DEVICE_TABLE(pci, iosf_mbi_pci_ids);


Patches currently in stable-queue which might be from [email protected] 
are

queue-3.14/x86-iosf-added-quark-mbi-identifiers.patch
queue-3.14/x86-iosf-add-quark-x1000-pci-id.patch
queue-3.14/x86-iosf-add-pci-id-macros-for-better-readability.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to