summaryrefslogtreecommitdiffstats
path: root/drivers/soc/imx/gpcv2.c
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2023-10-20 09:18:53 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2023-10-26 09:07:25 +0200
commitd04319f68b66e822443bcb6482544265f06d7013 (patch)
tree0450610676b5c2a04f2fedfa16756f12f9d5b34c /drivers/soc/imx/gpcv2.c
parent863b059a993b8f9e45cf621955fe9da6fbe46c54 (diff)
downloadbarebox-d04319f68b66e822443bcb6482544265f06d7013.tar.gz
barebox-d04319f68b66e822443bcb6482544265f06d7013.tar.xz
treewide: switch regmap.h include to linux/regmap.h
Now that there are no longer any users of regmap.h in headers, let's switch all users in the source files to linux/regmap.h. That way, the only users of regmap.h whether directly or indirectly will be out-of-tree code, which will fail with an error if they are dependent on the old semantics of regmap_bulk_read and regmap_bulk_write. After a transitory period, we can then drop regmap.h. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20231020071853.2826528-12-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/soc/imx/gpcv2.c')
-rw-r--r--drivers/soc/imx/gpcv2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/imx/gpcv2.c b/drivers/soc/imx/gpcv2.c
index 57d9dcc99d..b967947478 100644
--- a/drivers/soc/imx/gpcv2.c
+++ b/drivers/soc/imx/gpcv2.c
@@ -10,7 +10,7 @@
#include <of_device.h>
#include <common.h>
-#include <regmap.h>
+#include <linux/regmap.h>
#include <linux/clk.h>
#include <linux/reset.h>
#include <clock.h>