about summary refs log tree commit diff
path: root/modules/hardware/t100ha
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-08-01 22:26:44 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-08-01 22:26:44 +0200
commita8b9a3b69aff76f2630212c5909c620a381ce2a7 (patch)
tree42144bb073becab0c6eb6b37cb72fc4bbbb06cd1 /modules/hardware/t100ha
parent0e0dba4f698a71bfc98ad3bb0d9fa502852b8dd1 (diff)
hardware/t100ha: Fix bad configuration options
This was a copy & paste error by me, because I copied the options out of
an existing configuration, which contained the CONFIG_ prefixes. Within
extraConfig of the generic kernel builder, we only use the names without
prefixes.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/hardware/t100ha')
-rw-r--r--modules/hardware/t100ha/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/hardware/t100ha/default.nix b/modules/hardware/t100ha/default.nix
index 46044d43..cfd65552 100644
--- a/modules/hardware/t100ha/default.nix
+++ b/modules/hardware/t100ha/default.nix
@@ -74,15 +74,15 @@ in {
           PINCTRL_CHERRYVIEW y
 
           # I2C
-          CONFIG_I2C_DESIGNWARE_BAYTRAIL y
-          CONFIG_I2C_DESIGNWARE_PLATFORM y
+          I2C_DESIGNWARE_BAYTRAIL y
+          I2C_DESIGNWARE_PLATFORM y
 
           # HID
           INTEL_HID_EVENT y
 
           # MEI
-          CONFIG_INTEL_MEI y
-          CONFIG_INTEL_MEI_TXE y
+          INTEL_MEI y
+          INTEL_MEI_TXE y
         '';
 
         features.iwlwifi = true;