Skip to content

Commit b47018a

Browse files
westeriandy-shev
authored andcommitted
platform/x86: intel_scu_ipc: Remove Lincroft support
Moorestown support was removed years ago with by the commit 1a8359e ("x86/mid: Remove Intel Moorestown"). Lincroft is the CPU side chip of Moorestown and not supported anymore so remove the code from the driver. Signed-off-by: Mika Westerberg <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]>
1 parent 19e2d35 commit b47018a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

drivers/platform/x86/intel_scu_ipc.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
#define IPC_RWBUF_SIZE 20 /* IPC Read buffer Size */
5959
#define IPC_IOC 0x100 /* IPC command register IOC bit */
6060

61-
#define PCI_DEVICE_ID_LINCROFT 0x082a
6261
#define PCI_DEVICE_ID_PENWELL 0x080e
6362
#define PCI_DEVICE_ID_CLOVERVIEW 0x08ea
6463
#define PCI_DEVICE_ID_TANGIER 0x11a0
@@ -69,11 +68,6 @@ struct intel_scu_ipc_pdata_t {
6968
u32 i2c_len;
7069
};
7170

72-
static const struct intel_scu_ipc_pdata_t intel_scu_ipc_lincroft_pdata = {
73-
.i2c_base = 0xff12b000,
74-
.i2c_len = 0x10,
75-
};
76-
7771
/* Penwell and Cloverview */
7872
static const struct intel_scu_ipc_pdata_t intel_scu_ipc_penwell_pdata = {
7973
.i2c_base = 0xff12b000,
@@ -670,7 +664,6 @@ static int ipc_probe(struct pci_dev *pdev, const struct pci_device_id *id)
670664
#define SCU_DEVICE(id, pdata) {PCI_VDEVICE(INTEL, id), (kernel_ulong_t)&pdata}
671665

672666
static const struct pci_device_id pci_ids[] = {
673-
SCU_DEVICE(PCI_DEVICE_ID_LINCROFT, intel_scu_ipc_lincroft_pdata),
674667
SCU_DEVICE(PCI_DEVICE_ID_PENWELL, intel_scu_ipc_penwell_pdata),
675668
SCU_DEVICE(PCI_DEVICE_ID_CLOVERVIEW, intel_scu_ipc_penwell_pdata),
676669
SCU_DEVICE(PCI_DEVICE_ID_TANGIER, intel_scu_ipc_tangier_pdata),

0 commit comments

Comments
 (0)