diff options
| author | Mieczyslaw Nalewaj | 2025-05-19 21:03:43 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-05-20 09:52:08 +0000 |
| commit | 4c9f277c9af3a36301bcee40d6c5749a471d0de7 (patch) | |
| tree | 6bf31d66f01f60d47ddb7a5b73904ea55625d6ea | |
| parent | 6a85ce75af7b15a297a55ba88c3f104b7dddb34b (diff) | |
| download | openwrt-4c9f277c9af3a36301bcee40d6c5749a471d0de7.tar.gz | |
kernel/i2c: x86: remove kernel 6.12 conditions checking
After removing kernel 6.6 support for x86 targets,
kernel 6.12 conditions no longer need to be checked.
Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com>
Link: https://github.com/openwrt/openwrt/pull/18848
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/kernel/linux/modules/i2c.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/i2c.mk b/package/kernel/linux/modules/i2c.mk index a8b05fb614..45001f328e 100644 --- a/package/kernel/linux/modules/i2c.mk +++ b/package/kernel/linux/modules/i2c.mk @@ -152,7 +152,7 @@ define KernelPackage/i2c-i801 TITLE:=Intel I801 and compatible I2C interfaces DEPENDS:= \ @PCI_SUPPORT @TARGET_x86 +kmod-i2c-core +kmod-i2c-smbus \ - (!LINUX_6_6&&PACKAGE_kmod-i2c-mux-gpio):kmod-i2c-mux-gpio + PACKAGE_kmod-i2c-mux-gpio:kmod-i2c-mux-gpio endef define KernelPackage/i2c-i801/description @@ -291,7 +291,7 @@ I2C_PIIX4_MODULES:= \ define KernelPackage/i2c-piix4 $(call i2c_defaults,$(I2C_PIIX4_MODULES),59) TITLE:=Intel PIIX4 and compatible I2C interfaces - DEPENDS:=@PCI_SUPPORT @TARGET_x86 +kmod-i2c-core +!LINUX_6_6:kmod-i2c-smbus + DEPENDS:=@PCI_SUPPORT @TARGET_x86 +kmod-i2c-core +kmod-i2c-smbus endef define KernelPackage/i2c-piix4/description |