aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas Cassel <niklas.cassel@linaro.org>2018-08-29 03:57:16 -0400
committerAndy Gross <andy.gross@linaro.org>2018-09-13 17:11:33 -0400
commitda8eaf9a6cee12a0a77c82ffb0c93818e050f0d7 (patch)
tree7b05ace701526e5bbe4a8206540a91dcc2d4d194
parent9487e2ab1010c92789471d944230ecd38c720333 (diff)
soc: qcom: llcc-slice: Add missing include of sizes.h
Add missing include of sizes.h. drivers/soc/qcom/llcc-slice.c: In function ‘llcc_update_act_ctrl’: drivers/soc/qcom/llcc-slice.c:41:44: error: ‘SZ_4K’ undeclared #define LLCC_TRP_ACT_CTRLn(n) (n * SZ_4K) ^~~~~ Signed-off-by: Niklas Cassel <niklas.cassel@linaro.org> Reviewed-by: Vivek Gautam <vivek.gautam@codeaurora.org> Reviewed-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Andy Gross <andy.gross@linaro.org>
-rw-r--r--drivers/soc/qcom/llcc-slice.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/qcom/llcc-slice.c b/drivers/soc/qcom/llcc-slice.c
index d78926742510..192ca761b2cb 100644
--- a/drivers/soc/qcom/llcc-slice.c
+++ b/drivers/soc/qcom/llcc-slice.c
@@ -13,6 +13,7 @@
13#include <linux/mutex.h> 13#include <linux/mutex.h>
14#include <linux/of_device.h> 14#include <linux/of_device.h>
15#include <linux/regmap.h> 15#include <linux/regmap.h>
16#include <linux/sizes.h>
16#include <linux/slab.h> 17#include <linux/slab.h>
17#include <linux/soc/qcom/llcc-qcom.h> 18#include <linux/soc/qcom/llcc-qcom.h>
18 19