diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2019-10-31 11:20:26 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2019-10-31 11:22:34 +0900 |
commit | 9137facd97fc5c91c16e12397e7ca52a42b1fa79 (patch) | |
tree | 8b01b625f21cae570aacd9d10d6079cf032c9a42 /drivers | |
parent | 184bbf7f5c028617521e1cb3ed9b7fe40527298a (diff) | |
download | linux-exynos-tizen_5.5.tar.gz linux-exynos-tizen_5.5.tar.bz2 linux-exynos-tizen_5.5.zip |
clk: samsung: exynos5433: add missing slab.h headersubmit/tizen/20191031.111959submit/tizen/20191031.023155accepted/tizen/unified/20191101.042035tizen_5.5
After the commit ee9bfe5eb9de9a ("clk: samsung: exynos5433: Fix
error paths"), missing slab.h header causes build issue for using
kfree(). Add missing header as like mainline commit faac3604d05e
which is upstream version of ee9bfe5eb9de9a.
Change-Id: Ib47a3fe79a049fca11d6ac3f2a626156dd5696a7
Fixes: ee9bfe5eb9de9a ("clk: samsung: exynos5433: Fix error paths")
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/samsung/clk-exynos5433.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/samsung/clk-exynos5433.c b/drivers/clk/samsung/clk-exynos5433.c index 01ead7ea7d36..dde803979b97 100644 --- a/drivers/clk/samsung/clk-exynos5433.c +++ b/drivers/clk/samsung/clk-exynos5433.c @@ -16,6 +16,7 @@ #include <linux/of_device.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> +#include <linux/slab.h> #include <dt-bindings/clock/exynos5433.h> |