diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-27 16:53:24 +0530 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2013-10-08 15:45:44 +0200 |
commit | c3bdfe1f1e4e1e195945c55a2256eba89334d36c (patch) | |
tree | 6c882b4d771994e160a2189543f8a514a78f7f61 | |
parent | 2a8876cfdf14de557705e2559df99f40058a3b3b (diff) | |
download | linux-c3bdfe1f1e4e1e195945c55a2256eba89334d36c.tar.bz2 |
pwm: samsung: Include linux/of.h header
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
-rw-r--r-- | drivers/pwm/pwm-samsung.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-samsung.c b/drivers/pwm/pwm-samsung.c index fcc8b9adde9f..57eb8cb0638f 100644 --- a/drivers/pwm/pwm-samsung.c +++ b/drivers/pwm/pwm-samsung.c @@ -18,6 +18,7 @@ #include <linux/io.h> #include <linux/kernel.h> #include <linux/module.h> +#include <linux/of.h> #include <linux/platform_device.h> #include <linux/pwm.h> #include <linux/slab.h> |