diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-06-22 23:24:04 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-18 17:53:22 -0400 |
commit | e259d6a320d0280f02966b8bc35316fb136c5e24 (patch) | |
tree | 2e650107f2b91ac9dc63814ae0c23288923d0a20 | |
parent | c15df21fe79d420344a3ecb1bb60b8f97c6dec2e (diff) | |
download | u-boot-imx-e259d6a320d0280f02966b8bc35316fb136c5e24.zip u-boot-imx-e259d6a320d0280f02966b8bc35316fb136c5e24.tar.gz u-boot-imx-e259d6a320d0280f02966b8bc35316fb136c5e24.tar.bz2 |
lib: div64: add missing include
Include the function its prototype to prevent the warning
that it has no prototype.
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
-rw-r--r-- | lib/div64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/div64.c b/lib/div64.c index e688a91..795ef0e 100644 --- a/lib/div64.c +++ b/lib/div64.c @@ -16,6 +16,7 @@ * assembly versions such as arch/powerpc/lib/div64.S and arch/sh/lib/div64.S. */ +#include <div64.h> #include <linux/types.h> uint32_t __div64_32(uint64_t *n, uint32_t base) |