]> git.karo-electronics.de Git - linux-beck.git/commitdiff
greybus: pwm: Fix compilation with v4.3 kernel
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 9 Jun 2016 11:04:34 +0000 (16:34 +0530)
committerGreg Kroah-Hartman <gregkh@google.com>
Thu, 9 Jun 2016 19:28:48 +0000 (12:28 -0700)
pwm_is_enabled() wasn't enabled by v4.2-rc1, but it was based of
v4.2-rc1. It was actually first included in v4.3.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/kernel_ver.h

index fd5a6cc42eaafb355f6957f9512f49ae1143d7f7..2a541fa5f5bcdd0a69ef35d9e84d83f23c28d967 100644 (file)
@@ -328,10 +328,10 @@ static inline void reinit_completion(struct completion *x)
 }
 #endif
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 2, 0)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 3, 0)
 #include <linux/pwm.h>
 /*
- * pwm_is_enabled() was first defined in 4.2-rc1 (first commit!).
+ * pwm_is_enabled() was first defined in 4.3.
  * PWMF_ENABLED was first defined in 3.5-rc2, but our code is
  * always newer than that.
 */