summaryrefslogtreecommitdiffstats
path: root/common
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 /common
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 'common')
-rw-r--r--common/clock.c2
-rw-r--r--common/console_common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/clock.c b/common/clock.c
index 58c2964b13..7eeba88317 100644
--- a/common/clock.c
+++ b/common/clock.c
@@ -11,7 +11,7 @@
#include <common.h>
#include <init.h>
-#include <asm-generic/div64.h>
+#include <linux/math64.h>
#include <clock.h>
#include <poller.h>
diff --git a/common/console_common.c b/common/console_common.c
index 48590c522c..3e07415723 100644
--- a/common/console_common.c
+++ b/common/console_common.c
@@ -18,7 +18,7 @@
#include <clock.h>
#include <malloc.h>
#include <linux/pstore.h>
-#include <asm-generic/div64.h>
+#include <linux/math64.h>
#ifndef CONFIG_CONSOLE_NONE