[PATCH] soc: mediatek: mtk-svs: fix compilation error

From: matthias . bgg
Date: Tue Aug 30 2022 - 03:36:22 EST


From: Matthias Brugger <matthias.bgg@xxxxxxxxx>

When compiling on other architectures, compile test fails due to missing
bitfield.h include.

Fixes: a92438c5a30a ("soc: mediatek: mtk-svs: Use bitfield access macros where possible")
Signed-off-by: Matthias Brugger <matthias.bgg@xxxxxxxxx>
---
drivers/soc/mediatek/mtk-svs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/soc/mediatek/mtk-svs.c b/drivers/soc/mediatek/mtk-svs.c
index da1a3bfc8633..11a571d3f013 100644
--- a/drivers/soc/mediatek/mtk-svs.c
+++ b/drivers/soc/mediatek/mtk-svs.c
@@ -3,7 +3,7 @@
* Copyright (C) 2022 MediaTek Inc.
*/

-#include <linux/bits.h>
+#include <linux/bitfield.h>
#include <linux/clk.h>
#include <linux/completion.h>
#include <linux/cpuidle.h>
--
2.37.2