summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorAnson Huang <Anson.Huang@nxp.com>2020-02-18 19:03:24 +0800
committerShawn Guo <shawnguo@kernel.org>2020-02-19 10:19:13 +0800
commit64bee9c6cd48179010149313f74f9557345fd0da (patch)
tree9f35ecee8c9f8b6dc753e410645a0edef9a059c4 /drivers/clk
parent680fbce528169eaadf621066a4925794e2addbd7 (diff)
downloadlinux-64bee9c6cd48179010149313f74f9557345fd0da.tar.gz
linux-64bee9c6cd48179010149313f74f9557345fd0da.tar.bz2
linux-64bee9c6cd48179010149313f74f9557345fd0da.zip
clk: imx8mp: Include slab.h instead of clkdev.h
slab.h is necessary and included indirectly by clkdev.h, actually, there is nothing in use from clkdev.h, so just include slab.h instead of clkdev.h. Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Reviewed-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/imx/clk-imx8mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-imx8mp.c b/drivers/clk/imx/clk-imx8mp.c
index a16af4fce044..3adc8aa46200 100644
--- a/drivers/clk/imx/clk-imx8mp.c
+++ b/drivers/clk/imx/clk-imx8mp.c
@@ -4,13 +4,13 @@
*/
#include <dt-bindings/clock/imx8mp-clock.h>
-#include <linux/clkdev.h>
#include <linux/clk-provider.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
+#include <linux/slab.h>
#include <linux/types.h>
#include "clk.h"