diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2018-06-19 20:58:51 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2018-06-21 20:02:22 +0300 |
commit | f9a42ae2d707b63b2bbe72945a2816da7d4fe30c (patch) | |
tree | c792fe446924d64f9cedf38a8b983c8ee0e10557 | |
parent | a704a2c06f13ade699d24616322a1339c4321cb5 (diff) | |
download | upstream-f9a42ae2d707b63b2bbe72945a2816da7d4fe30c.tar.gz upstream-f9a42ae2d707b63b2bbe72945a2816da7d4fe30c.tar.bz2 upstream-f9a42ae2d707b63b2bbe72945a2816da7d4fe30c.zip |
kernel: define THERMAL_EMERGENCY_POWEROFF_DELAY_MS
Enabling CONFIG_ATH10K_THERMAL on targets that don't have CONFIG_THERMAL
enabled in their kernel config causes build to fail due to missing
symbol THERMAL_EMERGENCY_POWEROFF_DELAY_MS. Add it to kmod-thermal.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
-rw-r--r-- | package/kernel/linux/modules/other.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 3a997f881e..7e18a21db3 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -927,6 +927,7 @@ define KernelPackage/thermal CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y \ CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE=n \ CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE=n \ + CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 \ CONFIG_THERMAL_GOV_FAIR_SHARE=n \ CONFIG_THERMAL_GOV_STEP_WISE=y \ CONFIG_THERMAL_GOV_USER_SPACE=n \ |