diff options
| author | Dinh Nguyen <[email protected]> | 2010-04-13 14:05:08 -0500 |
|---|---|---|
| committer | Sascha Hauer <[email protected]> | 2010-04-14 09:04:15 +0200 |
| commit | 17807f913bdbb2c5b4d0f6b168b4f68d5cece7e3 (patch) | |
| tree | fb0a561455037a2b52c6161569c4d0155d72b747 | |
| parent | 2ba3abd8186f24c7fb418927025b4e2120e3a362 (diff) | |
mx5: Fix build error for mx51_defconfig
Need to include <asm/div64.h> for do_div calls.
Signed-off-by: Dinh Nguyen <[email protected]>
Signed-off-by: Sascha Hauer <[email protected]>
| -rw-r--r-- | arch/arm/mach-mx5/clock-mx51.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-mx5/clock-mx51.c b/arch/arm/mach-mx5/clock-mx51.c index 8f85f73b83a8..1ee6ce4087b8 100644 --- a/arch/arm/mach-mx5/clock-mx51.c +++ b/arch/arm/mach-mx5/clock-mx51.c @@ -16,6 +16,7 @@ #include <linux/io.h> #include <asm/clkdev.h> +#include <asm/div64.h> #include <mach/hardware.h> #include <mach/common.h> |