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

mmc: sdhci-pci: add another device id

Add another PCI device id for an eMMC host controller.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Chris Ball <cjb@laptop.org>

authored by

Adrian Hunter and committed by
Chris Ball
30d025c0 dcaff04d

+9
+9
drivers/mmc/host/sdhci-pci.c
··· 36 36 #define PCI_DEVICE_ID_INTEL_BYT_EMMC 0x0f14 37 37 #define PCI_DEVICE_ID_INTEL_BYT_SDIO 0x0f15 38 38 #define PCI_DEVICE_ID_INTEL_BYT_SD 0x0f16 39 + #define PCI_DEVICE_ID_INTEL_BYT_EMMC2 0x0f50 39 40 40 41 /* 41 42 * PCI registers ··· 929 928 .subvendor = PCI_ANY_ID, 930 929 .subdevice = PCI_ANY_ID, 931 930 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd, 931 + }, 932 + 933 + { 934 + .vendor = PCI_VENDOR_ID_INTEL, 935 + .device = PCI_DEVICE_ID_INTEL_BYT_EMMC2, 936 + .subvendor = PCI_ANY_ID, 937 + .subdevice = PCI_ANY_ID, 938 + .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc, 932 939 }, 933 940 934 941 {