summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-divider.c
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-02-18 10:38:59 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-02-19 08:38:58 +0100
commit09db4f3b59ad06eae514b62c78211db470ecd287 (patch)
tree6e5f649a9c8c41c5891c30ac04c299a0d3738bed /drivers/clk/clk-divider.c
parenta519102def51e995485d933081471e853d36a228 (diff)
downloadbarebox-09db4f3b59ad06eae514b62c78211db470ecd287.tar.gz
barebox-09db4f3b59ad06eae514b62c78211db470ecd287.tar.xz
treewide: include <linux/math64.h> wrapper instead of <asm-generic/div64.h>
<asm-generic/div64.h> isn't meant for direct usage as <asm/div64.h> may override this on a per-architecture basis. We don't do that currently, but in the future we might. Include the <linux/math64.h> instead. No functional change. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/clk/clk-divider.c')
-rw-r--r--drivers/clk/clk-divider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
index cad902fd32..9c2e50e4a5 100644
--- a/drivers/clk/clk-divider.c
+++ b/drivers/clk/clk-divider.c
@@ -10,7 +10,7 @@
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/log2.h>
-#include <asm-generic/div64.h>
+#include <linux/math64.h>
static unsigned int _get_table_maxdiv(const struct clk_div_table *table)
{