2021-10-01 13:42:20 +05:30
|
|
|
From 76d8253d90233b2c2d3fbc82355c603bf0eb9964 Mon Sep 17 00:00:00 2001
|
|
|
|
|
From: Aditya Garg <gargaditya08@live.com>
|
|
|
|
|
Date: Fri, 1 Oct 2021 13:30:19 +0530
|
|
|
|
|
Subject: [PATCH] Add support for MacBookPro16,2 UART
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
drivers/mfd/intel-lpss-pci.c | 2 ++
|
|
|
|
|
1 file changed, 2 insertions(+)
|
|
|
|
|
|
|
|
|
|
diff --git a/drivers/mfd/intel-lpss-pci.c b/drivers/mfd/intel-lpss-pci.c
|
|
|
|
|
index c54d19fb1..33d5043fd 100644
|
|
|
|
|
--- a/drivers/mfd/intel-lpss-pci.c
|
|
|
|
|
+++ b/drivers/mfd/intel-lpss-pci.c
|
|
|
|
|
@@ -253,6 +253,8 @@ static const struct pci_device_id intel_lpss_pci_ids[] = {
|
|
|
|
|
{ PCI_VDEVICE(INTEL, 0x34ea), (kernel_ulong_t)&bxt_i2c_info },
|
|
|
|
|
{ PCI_VDEVICE(INTEL, 0x34eb), (kernel_ulong_t)&bxt_i2c_info },
|
|
|
|
|
{ PCI_VDEVICE(INTEL, 0x34fb), (kernel_ulong_t)&spt_info },
|
2021-10-01 17:56:19 +05:30
|
|
|
+ /* ICL-N*/
|
2021-10-01 13:42:20 +05:30
|
|
|
+ { PCI_VDEVICE(INTEL, 0x38a8), (kernel_ulong_t)&bxt_uart_info },
|
|
|
|
|
/* TGL-H */
|
|
|
|
|
{ PCI_VDEVICE(INTEL, 0x43a7), (kernel_ulong_t)&bxt_uart_info },
|
|
|
|
|
{ PCI_VDEVICE(INTEL, 0x43a8), (kernel_ulong_t)&bxt_uart_info },
|