* [PATCH 2.6.34-rc4 1/1] mx5: Fix build error for mx51_defconfig
@ 2010-04-13 19:05 Dinh.Nguyen at freescale.com
2010-04-14 6:44 ` Amit Kucheria
0 siblings, 1 reply; 3+ messages in thread
From: Dinh.Nguyen at freescale.com @ 2010-04-13 19:05 UTC (permalink / raw)
To: linux-arm-kernel
From: Dinh Nguyen <Dinh.Nguyen@freescale.com>
Need to include <asm/div64.h> for do_div calls.
Signed-off-by: Dinh Nguyen <Dinh.Nguyen@freescale.com>
---
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 8f85f73..1ee6ce4 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>
--
1.6.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2.6.34-rc4 1/1] mx5: Fix build error for mx51_defconfig
2010-04-13 19:05 [PATCH 2.6.34-rc4 1/1] mx5: Fix build error for mx51_defconfig Dinh.Nguyen at freescale.com
@ 2010-04-14 6:44 ` Amit Kucheria
2010-04-14 6:54 ` Sascha Hauer
0 siblings, 1 reply; 3+ messages in thread
From: Amit Kucheria @ 2010-04-14 6:44 UTC (permalink / raw)
To: linux-arm-kernel
On 10 Apr 13, Dinh.Nguyen at freescale.com wrote:
> From: Dinh Nguyen <Dinh.Nguyen@freescale.com>
>
> Need to include <asm/div64.h> for do_div calls.
>
> Signed-off-by: Dinh Nguyen <Dinh.Nguyen@freescale.com>
> ---
> 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 8f85f73..1ee6ce4 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>
> --
> 1.6.0.4
Acked-by: Amit Kucheria <amit.kucheria@canonical.com>
Sascha, I can collect all the mx5 patches and make them available to you in a
git pull-request. Would that be ok?
Regards,
Amit
p.s. Your patches are on my todo list. Will get to them now.
--
----------------------------------------------------------------------
Amit Kucheria, Kernel Engineer || amit.kucheria at canonical.com
----------------------------------------------------------------------
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2.6.34-rc4 1/1] mx5: Fix build error for mx51_defconfig
2010-04-14 6:44 ` Amit Kucheria
@ 2010-04-14 6:54 ` Sascha Hauer
0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2010-04-14 6:54 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Apr 14, 2010 at 09:44:37AM +0300, Amit Kucheria wrote:
> On 10 Apr 13, Dinh.Nguyen at freescale.com wrote:
> > From: Dinh Nguyen <Dinh.Nguyen@freescale.com>
> >
> > Need to include <asm/div64.h> for do_div calls.
> >
> > Signed-off-by: Dinh Nguyen <Dinh.Nguyen@freescale.com>
> > ---
> > 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 8f85f73..1ee6ce4 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>
> > --
> > 1.6.0.4
>
> Acked-by: Amit Kucheria <amit.kucheria@canonical.com>
>
> Sascha, I can collect all the mx5 patches and make them available to you in a
> git pull-request. Would that be ok?
I prefer collecting them myself since many patches will be not i.MX51
specific but i.MX specific and I'm afraid of too many merge conflicts.
>
> Regards,
> Amit
> p.s. Your patches are on my todo list. Will get to them now.
They are already mainline.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-14 6:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-13 19:05 [PATCH 2.6.34-rc4 1/1] mx5: Fix build error for mx51_defconfig Dinh.Nguyen at freescale.com
2010-04-14 6:44 ` Amit Kucheria
2010-04-14 6:54 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).