* build fails for adder875 for new pulls of powerpc.git
[not found] <mailman.1812.1201784040.6908.linuxppc-dev@ozlabs.org>
@ 2008-01-31 14:18 ` Rognlien Dag Kristian
2008-01-31 18:20 ` Jochen Friedrich
0 siblings, 1 reply; 4+ messages in thread
From: Rognlien Dag Kristian @ 2008-01-31 14:18 UTC (permalink / raw)
To: linuxppc-dev
[-- Attachment #1: Type: text/plain, Size: 186 bytes --]
The latest commits to powerpc.git removes commproc.h files used by arch/powerpc/platforms/8xx/adder875.c
The kernel fails to build for the adder configs.
Regards,
Dag Rognlien
[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 2642 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: build fails for adder875 for new pulls of powerpc.git
2008-01-31 14:18 ` build fails for adder875 for new pulls of powerpc.git Rognlien Dag Kristian
@ 2008-01-31 18:20 ` Jochen Friedrich
2008-01-31 18:36 ` Jochen Friedrich
2008-01-31 19:13 ` Kumar Gala
0 siblings, 2 replies; 4+ messages in thread
From: Jochen Friedrich @ 2008-01-31 18:20 UTC (permalink / raw)
To: Rognlien Dag Kristian; +Cc: linuxppc-dev
Hi Rognlien,
> The latest commits to powerpc.git removes commproc.h files used by arch/powerpc/platforms/8xx/adder875.c
>
> The kernel fails to build for the adder configs.
This should fix it:
diff --git a/arch/powerpc/platforms/8xx/adder875.c b/arch/powerpc/platforms/8xx/adder875.c
index c6bc078..b49d62a 100644
--- a/arch/powerpc/platforms/8xx/adder875.c
+++ b/arch/powerpc/platforms/8xx/adder875.c
@@ -15,12 +15,12 @@
#include <asm/time.h>
#include <asm/machdep.h>
-#include <asm/commproc.h>
+#include <asm/cpm1.h>
#include <asm/fs_pd.h>
#include <asm/udbg.h>
#include <asm/prom.h>
-#include <sysdev/commproc.h>
+#include "mpc8xx.h"
struct cpm_pin {
int port, pin, flags;
Thanks,
Jochen
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: build fails for adder875 for new pulls of powerpc.git
2008-01-31 18:20 ` Jochen Friedrich
@ 2008-01-31 18:36 ` Jochen Friedrich
2008-01-31 19:13 ` Kumar Gala
1 sibling, 0 replies; 4+ messages in thread
From: Jochen Friedrich @ 2008-01-31 18:36 UTC (permalink / raw)
To: Rognlien Dag Kristian; +Cc: linuxppc-dev
Hi Rognlien,
> Hi Rognlien,
>
>> The latest commits to powerpc.git removes commproc.h files used by arch/powerpc/platforms/8xx/adder875.c
>>
>> The kernel fails to build for the adder configs.
>
> This should fix it:
>
> diff --git a/arch/powerpc/platforms/8xx/adder875.c b/arch/powerpc/platforms/8xx/adder875.c
> index c6bc078..b49d62a 100644
> --- a/arch/powerpc/platforms/8xx/adder875.c
> +++ b/arch/powerpc/platforms/8xx/adder875.c
> @@ -15,12 +15,12 @@
>
> #include <asm/time.h>
> #include <asm/machdep.h>
> -#include <asm/commproc.h>
> +#include <asm/cpm1.h>
> #include <asm/fs_pd.h>
> #include <asm/udbg.h>
> #include <asm/prom.h>
>
> -#include <sysdev/commproc.h>
> +#include "mpc8xx.h"
>
> struct cpm_pin {
> int port, pin, flags;
sorry, this fix was incomplete. Scott Wood just posted a correct fix.
Thanks,
Jochen
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: build fails for adder875 for new pulls of powerpc.git
2008-01-31 18:20 ` Jochen Friedrich
2008-01-31 18:36 ` Jochen Friedrich
@ 2008-01-31 19:13 ` Kumar Gala
1 sibling, 0 replies; 4+ messages in thread
From: Kumar Gala @ 2008-01-31 19:13 UTC (permalink / raw)
To: Jochen Friedrich; +Cc: Scott Wood, linuxppc-dev list, Rognlien Dag Kristian
On Jan 31, 2008, at 12:20 PM, Jochen Friedrich wrote:
> Hi Rognlien,
>
>> The latest commits to powerpc.git removes commproc.h files used by
>> arch/powerpc/platforms/8xx/adder875.c
>>
>> The kernel fails to build for the adder configs.
>
> This should fix it:
>
> diff --git a/arch/powerpc/platforms/8xx/adder875.c b/arch/powerpc/
> platforms/8xx/adder875.c
> index c6bc078..b49d62a 100644
> --- a/arch/powerpc/platforms/8xx/adder875.c
> +++ b/arch/powerpc/platforms/8xx/adder875.c
> @@ -15,12 +15,12 @@
>
> #include <asm/time.h>
> #include <asm/machdep.h>
> -#include <asm/commproc.h>
> +#include <asm/cpm1.h>
> #include <asm/fs_pd.h>
> #include <asm/udbg.h>
> #include <asm/prom.h>
>
> -#include <sysdev/commproc.h>
> +#include "mpc8xx.h"
>
> struct cpm_pin {
> int port, pin, flags;
>
> Thanks,
> Jochen
I'll take scott's version as its more complete and fixes another board.
- k
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-01-31 19:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.1812.1201784040.6908.linuxppc-dev@ozlabs.org>
2008-01-31 14:18 ` build fails for adder875 for new pulls of powerpc.git Rognlien Dag Kristian
2008-01-31 18:20 ` Jochen Friedrich
2008-01-31 18:36 ` Jochen Friedrich
2008-01-31 19:13 ` Kumar Gala
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).