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

i2c: i801: Correct Intel Jasper Lake SOC naming

There is no suffix applied to Intel Jasper Lake SOC. Remove it
from the comments and definitions. Besides that, it's a SOC,
thus replace PCH with SOC where it appropriate.

Fixes: e0c61c04791a ("i2c: i801: Add support for Intel Jasper Lake")
Cc: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

authored by

Andy Shevchenko and committed by
Wolfram Sang
790591f4 7787657d

+6 -6
+1 -1
Documentation/i2c/busses/i2c-i801.rst
··· 42 42 * Intel Comet Lake (PCH) 43 43 * Intel Elkhart Lake (PCH) 44 44 * Intel Tiger Lake (PCH) 45 - * Intel Jasper Lake (PCH) 45 + * Intel Jasper Lake (SOC) 46 46 47 47 Datasheets: Publicly available at the Intel website 48 48
+1 -1
drivers/i2c/busses/Kconfig
··· 145 145 Comet Lake (PCH) 146 146 Elkhart Lake (PCH) 147 147 Tiger Lake (PCH) 148 - Jasper Lake (PCH) 148 + Jasper Lake (SOC) 149 149 150 150 This driver can also be built as a module. If so, the module 151 151 will be called i2c-i801.
+4 -4
drivers/i2c/busses/i2c-i801.c
··· 67 67 * Comet Lake-H (PCH) 0x06a3 32 hard yes yes yes 68 68 * Elkhart Lake (PCH) 0x4b23 32 hard yes yes yes 69 69 * Tiger Lake-LP (PCH) 0xa0a3 32 hard yes yes yes 70 - * Jasper Lake-N (PCH) 0x4da3 32 hard yes yes yes 70 + * Jasper Lake (SOC) 0x4da3 32 hard yes yes yes 71 71 * 72 72 * Features supported by this driver: 73 73 * Software PEC no ··· 226 226 #define PCI_DEVICE_ID_INTEL_ICELAKE_LP_SMBUS 0x34a3 227 227 #define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30 228 228 #define PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS 0x4b23 229 - #define PCI_DEVICE_ID_INTEL_JASPER_LAKE_N_SMBUS 0x4da3 229 + #define PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS 0x4da3 230 230 #define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4 231 231 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22 232 232 #define PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS 0x8ca2 ··· 1076 1076 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COMETLAKE_H_SMBUS) }, 1077 1077 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS) }, 1078 1078 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TIGERLAKE_LP_SMBUS) }, 1079 - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_JASPER_LAKE_N_SMBUS) }, 1079 + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS) }, 1080 1080 { 0, } 1081 1081 }; 1082 1082 ··· 1759 1759 case PCI_DEVICE_ID_INTEL_COMETLAKE_H_SMBUS: 1760 1760 case PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS: 1761 1761 case PCI_DEVICE_ID_INTEL_TIGERLAKE_LP_SMBUS: 1762 - case PCI_DEVICE_ID_INTEL_JASPER_LAKE_N_SMBUS: 1762 + case PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS: 1763 1763 priv->features |= FEATURE_BLOCK_PROC; 1764 1764 priv->features |= FEATURE_I2C_BLOCK_READ; 1765 1765 priv->features |= FEATURE_IRQ;