Message ID | 9f1fcef9094c62eea84872a5d4ba04eaf46f664e.1744273511.git.geert+renesas@glider.be |
---|---|
State | New |
Headers | show |
Series | HID: HID_APPLETB_KBD and HID_APPLETB_BL should depend on X86 | expand |
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 119e5190a2df786e..43859fc757470caf 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -151,6 +151,7 @@ config HID_APPLEIR config HID_APPLETB_BL tristate "Apple Touch Bar Backlight" depends on BACKLIGHT_CLASS_DEVICE + depends on X86 || COMPILE_TEST help Say Y here if you want support for the backlight of Touch Bars on x86 MacBook Pros.
The Apple Touch Bar is only present on x86 MacBook Pros. Hence add a dependency on X86, to prevent asking the user about this driver when configuring a kernel for a different architecture. Fixes: 1fd41e5e3d7cc556 ("HID: hid-appletb-bl: add driver for the backlight of Apple Touch Bars") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- This is v2 of "HID: HID_APPLETB_BL and HID_APPLETB_KBD should depend on X86". v2: - Split in two patches. --- drivers/hid/Kconfig | 1 + 1 file changed, 1 insertion(+)