Skip to content

Commit cca01f5

Browse files
corsair-hydro-platinum: Add CONFIG_CRC8=y to CI kernel config
This is to avoid having an alternate implementation in the driver in case it causes issues later down the line when upstreaming. For mainline builds due to: torvalds/linux@aa09b32 we need to trick the kernel into enabling CRC8 via: CONFIG_COMPILE_TEST=y (Allows I2C to be enabled without platform support) CONFIG_I2C=y (Required for PMBus) CONFIG_PMBUS=y (Required for ADM1266) CONFIG_SENSORS_ADM1266=y (The driver that actually selects CRC8) Seems like a lot of leap frogging, but this should do the trick.. Signed-off-by: Jack Greiner <[email protected]>
1 parent a194878 commit cca01f5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/all.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
CONFIG_MODULES=y
22
CONFIG_INPUT=y
33
CONFIG_HID=y
4+
CONFIG_CRC8=y
45
CONFIG_HID_SUPPORT=y
56
CONFIG_USB_SUPPORT=y
67
CONFIG_USB=y
78
CONFIG_USB_HID=y
89
CONFIG_HWMON=y
10+
CONFIG_COMPILE_TEST=y
11+
CONFIG_I2C=y
12+
CONFIG_PMBUS=y
13+
CONFIG_SENSORS_ADM1266=y
914
CONFIG_WERROR=y

0 commit comments

Comments
 (0)