All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix include paths in malta-amon.c
@ 2008-09-20 17:16 David Daney
  2008-10-12 12:53 ` Adrian Bunk
  2008-10-15 14:38 ` Ralf Baechle
  0 siblings, 2 replies; 6+ messages in thread
From: David Daney @ 2008-09-20 17:16 UTC (permalink / raw)
  To: linux-mips


On linux-queue, malta doesn't build after the include file relocation.
This should fix it.

There some occurrences of 'asm-mips' in the comments of quite a few
files, but this is the only place I found it in any code.

Signed-off-by: David Daney <ddaney@avtrex.com>
---
 arch/mips/mti-malta/malta-amon.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/mips/mti-malta/malta-amon.c b/arch/mips/mti-malta/malta-amon.c
index 96236bf..df9e526 100644
--- a/arch/mips/mti-malta/malta-amon.c
+++ b/arch/mips/mti-malta/malta-amon.c
@@ -22,9 +22,9 @@
 #include <linux/init.h>
 #include <linux/smp.h>
 
-#include <asm-mips/addrspace.h>
-#include <asm-mips/mips-boards/launch.h>
-#include <asm-mips/mipsmtregs.h>
+#include <asm/addrspace.h>
+#include <asm/mips-boards/launch.h>
+#include <asm/mipsmtregs.h>
 
 int amon_cpu_avail(int cpu)
 {
-- 
1.5.5.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix include paths in malta-amon.c
  2008-09-20 17:16 [PATCH] Fix include paths in malta-amon.c David Daney
@ 2008-10-12 12:53 ` Adrian Bunk
  2008-10-15 14:38 ` Ralf Baechle
  1 sibling, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2008-10-12 12:53 UTC (permalink / raw)
  To: David Daney, Ralf Baechle; +Cc: linux-mips

Ralf, can you apply David's patch?

The build error is now in Linus' tree.

TIA
Adrian


On Sat, Sep 20, 2008 at 10:16:36AM -0700, David Daney wrote:
> 
> On linux-queue, malta doesn't build after the include file relocation.
> This should fix it.
> 
> There some occurrences of 'asm-mips' in the comments of quite a few
> files, but this is the only place I found it in any code.
> 
> Signed-off-by: David Daney <ddaney@avtrex.com>
> ---
>  arch/mips/mti-malta/malta-amon.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/mips/mti-malta/malta-amon.c b/arch/mips/mti-malta/malta-amon.c
> index 96236bf..df9e526 100644
> --- a/arch/mips/mti-malta/malta-amon.c
> +++ b/arch/mips/mti-malta/malta-amon.c
> @@ -22,9 +22,9 @@
>  #include <linux/init.h>
>  #include <linux/smp.h>
>  
> -#include <asm-mips/addrspace.h>
> -#include <asm-mips/mips-boards/launch.h>
> -#include <asm-mips/mipsmtregs.h>
> +#include <asm/addrspace.h>
> +#include <asm/mips-boards/launch.h>
> +#include <asm/mipsmtregs.h>
>  
>  int amon_cpu_avail(int cpu)
>  {

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix include paths in malta-amon.c
  2008-09-20 17:16 [PATCH] Fix include paths in malta-amon.c David Daney
  2008-10-12 12:53 ` Adrian Bunk
@ 2008-10-15 14:38 ` Ralf Baechle
  2008-10-31 12:56   ` Dmitri Vorobiev
  1 sibling, 1 reply; 6+ messages in thread
From: Ralf Baechle @ 2008-10-15 14:38 UTC (permalink / raw)
  To: David Daney; +Cc: linux-mips

On Sat, Sep 20, 2008 at 10:16:36AM -0700, David Daney wrote:

> On linux-queue, malta doesn't build after the include file relocation.
> This should fix it.
> 
> There some occurrences of 'asm-mips' in the comments of quite a few
> files, but this is the only place I found it in any code.
> 
> Signed-off-by: David Daney <ddaney@avtrex.com>

Thanks, applied.

  Ralf

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix include paths in malta-amon.c
  2008-10-15 14:38 ` Ralf Baechle
@ 2008-10-31 12:56   ` Dmitri Vorobiev
  2008-11-07 23:37     ` Dmitri Vorobiev
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitri Vorobiev @ 2008-10-31 12:56 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: David Daney, linux-mips

Ralf Baechle wrote:
> On Sat, Sep 20, 2008 at 10:16:36AM -0700, David Daney wrote:
> 
>> On linux-queue, malta doesn't build after the include file relocation.
>> This should fix it.
>>
>> There some occurrences of 'asm-mips' in the comments of quite a few
>> files, but this is the only place I found it in any code.
>>
>> Signed-off-by: David Daney <ddaney@avtrex.com>
> 
> Thanks, applied.

Hi,

The fix is still not in Linus' tree.

Dmitri

> 
>   Ralf
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix include paths in malta-amon.c
  2008-10-31 12:56   ` Dmitri Vorobiev
@ 2008-11-07 23:37     ` Dmitri Vorobiev
  2008-11-18 12:58       ` Dmitri Vorobiev
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitri Vorobiev @ 2008-11-07 23:37 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: Ralf Baechle, David Daney, linux-mips

2008/10/31 Dmitri Vorobiev <dmitri.vorobiev@movial.fi>:
> Ralf Baechle wrote:
>> On Sat, Sep 20, 2008 at 10:16:36AM -0700, David Daney wrote:
>>
>>> On linux-queue, malta doesn't build after the include file relocation.
>>> This should fix it.
>>>
>>> There some occurrences of 'asm-mips' in the comments of quite a few
>>> files, but this is the only place I found it in any code.
>>>
>>> Signed-off-by: David Daney <ddaney@avtrex.com>
>>
>> Thanks, applied.
>
> Hi,
>
> The fix is still not in Linus' tree.

Another week, but the fix is still not in Linus' tree.

Dmitri

>
> Dmitri
>
>>
>>   Ralf
>>
>
>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix include paths in malta-amon.c
  2008-11-07 23:37     ` Dmitri Vorobiev
@ 2008-11-18 12:58       ` Dmitri Vorobiev
  0 siblings, 0 replies; 6+ messages in thread
From: Dmitri Vorobiev @ 2008-11-18 12:58 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Dmitri Vorobiev, David Daney, linux-mips

Dmitri Vorobiev wrote:
> 2008/10/31 Dmitri Vorobiev <dmitri.vorobiev@movial.fi>:
>> Ralf Baechle wrote:
>>> On Sat, Sep 20, 2008 at 10:16:36AM -0700, David Daney wrote:
>>>
>>>> On linux-queue, malta doesn't build after the include file relocation.
>>>> This should fix it.
>>>>
>>>> There some occurrences of 'asm-mips' in the comments of quite a few
>>>> files, but this is the only place I found it in any code.
>>>>
>>>> Signed-off-by: David Daney <ddaney@avtrex.com>
>>> Thanks, applied.
>> Hi,
>>
>> The fix is still not in Linus' tree.
> 
> Another week, but the fix is still not in Linus' tree.

Hi Ralf,

Please let me remind you that this fix is still not in Linus' tree. That is, malta_defconfig still does not build.

Thanks,
Dmitri

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-11-18 12:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-20 17:16 [PATCH] Fix include paths in malta-amon.c David Daney
2008-10-12 12:53 ` Adrian Bunk
2008-10-15 14:38 ` Ralf Baechle
2008-10-31 12:56   ` Dmitri Vorobiev
2008-11-07 23:37     ` Dmitri Vorobiev
2008-11-18 12:58       ` Dmitri Vorobiev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.