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

staging: sep: Add new PCI identifier

[This is picked out of the differences between the upstream driver and
the staging driver. I'm resolving the differences as a series of updates -AC]

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Mark A. Allyn and committed by
Greg Kroah-Hartman
ffcf1281 2157f896

+3 -5
-3
drivers/staging/sep/sep_driver_hw_defs.h
··· 33 33 #ifndef SEP_DRIVER_HW_DEFS__H 34 34 #define SEP_DRIVER_HW_DEFS__H 35 35 36 - /* PCI ID's */ 37 - #define MFLD_PCI_DEVICE_ID 0x0826 38 - 39 36 /*----------------------- */ 40 37 /* HW Registers Defines. */ 41 38 /* */
+3 -2
drivers/staging/sep/sep_main.c
··· 4085 4085 4086 4086 /* Initialize struct pci_device_id for our driver */ 4087 4087 static DEFINE_PCI_DEVICE_TABLE(sep_pci_id_tbl) = { 4088 - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MFLD_PCI_DEVICE_ID)}, 4089 - {0} 4088 + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0826)}, 4089 + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08e9)}, 4090 + {0} 4090 4091 }; 4091 4092 4092 4093 /* Export our pci_device_id structure to user space */