linux-next: build failure after merge of the mailbox tree

2017-03-28 Thread Stephen Rothwell
Hi Jassi,

After merging the mailbox tree, today's linux-next build (powerpc
allyesconfig) failed like this:

In file included from /home/sfr/next/next/include/linux/kvm_host.h:20:0,
 from /home/sfr/next/next/arch/powerpc/kernel/asm-offsets.c:54:
/home/sfr/next/next/include/linux/msi.h:195:21: fatal error: asm/msi.h: No such 
file or directory

Caused by commit

  dbc049eee730 ("mailbox: Add driver for Broadcom FlexRM ring manager")

Not all architectures have the above include file.

I have added the following patch for today:

From: Stephen Rothwell 
Date: Wed, 29 Mar 2017 16:11:14 +1100
Subject: [PATCH] mailbox: do not compile test the Broadcom FlexRM Mailbox
 driver

Signed-off-by: Stephen Rothwell 
---
 drivers/mailbox/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig
index 0b6f25e26c7c..ee1a3d9147ef 100644
--- a/drivers/mailbox/Kconfig
+++ b/drivers/mailbox/Kconfig
@@ -154,7 +154,7 @@ config BCM_PDC_MBOX
 
 config BCM_FLEXRM_MBOX
tristate "Broadcom FlexRM Mailbox"
-   depends on ARM64 || COMPILE_TEST
+   depends on ARM64
depends on HAS_DMA
select GENERIC_MSI_IRQ_DOMAIN
default ARCH_BCM_IPROC
-- 
2.11.0

-- 
Cheers,
Stephen Rothwell


linux-next: build failure after merge of the mailbox tree

2017-03-28 Thread Stephen Rothwell
Hi Jassi,

After merging the mailbox tree, today's linux-next build (powerpc
allyesconfig) failed like this:

In file included from /home/sfr/next/next/include/linux/kvm_host.h:20:0,
 from /home/sfr/next/next/arch/powerpc/kernel/asm-offsets.c:54:
/home/sfr/next/next/include/linux/msi.h:195:21: fatal error: asm/msi.h: No such 
file or directory

Caused by commit

  dbc049eee730 ("mailbox: Add driver for Broadcom FlexRM ring manager")

Not all architectures have the above include file.

I have added the following patch for today:

From: Stephen Rothwell 
Date: Wed, 29 Mar 2017 16:11:14 +1100
Subject: [PATCH] mailbox: do not compile test the Broadcom FlexRM Mailbox
 driver

Signed-off-by: Stephen Rothwell 
---
 drivers/mailbox/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig
index 0b6f25e26c7c..ee1a3d9147ef 100644
--- a/drivers/mailbox/Kconfig
+++ b/drivers/mailbox/Kconfig
@@ -154,7 +154,7 @@ config BCM_PDC_MBOX
 
 config BCM_FLEXRM_MBOX
tristate "Broadcom FlexRM Mailbox"
-   depends on ARM64 || COMPILE_TEST
+   depends on ARM64
depends on HAS_DMA
select GENERIC_MSI_IRQ_DOMAIN
default ARCH_BCM_IPROC
-- 
2.11.0

-- 
Cheers,
Stephen Rothwell


Re: linux-next: build failure after merge of the mailbox tree

2015-11-04 Thread Lee Jones
On Wed, 04 Nov 2015, Jassi Brar wrote:

> On 1 November 2015 at 17:42, Stephen Rothwell  wrote:
> > Hi Jassi,
> >
> > After merging the mailbox tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> >
> > drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
> > drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of 
> > function '__io_virt' [-Werror=implicit-function-declaration]
> >__io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
> >^
> >
> > Caused by commit
> >
> >   a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")
> >
> > I have used the mailbox tree from next-20151022 for today.
> >
> Lee, would you please send a fix for your last fix please?

I was about to take a look at this, but it looks like you fixed it already.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: linux-next: build failure after merge of the mailbox tree

2015-11-04 Thread Lee Jones
On Wed, 04 Nov 2015, Jassi Brar wrote:

> On 1 November 2015 at 17:42, Stephen Rothwell  wrote:
> > Hi Jassi,
> >
> > After merging the mailbox tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> >
> > drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
> > drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of 
> > function '__io_virt' [-Werror=implicit-function-declaration]
> >__io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
> >^
> >
> > Caused by commit
> >
> >   a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")
> >
> > I have used the mailbox tree from next-20151022 for today.
> >
> Lee, would you please send a fix for your last fix please?

I was about to take a look at this, but it looks like you fixed it already.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: linux-next: build failure after merge of the mailbox tree

2015-11-03 Thread Jassi Brar
On 1 November 2015 at 17:42, Stephen Rothwell  wrote:
> Hi Jassi,
>
> After merging the mailbox tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
>
> drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
> drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of 
> function '__io_virt' [-Werror=implicit-function-declaration]
>__io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
>^
>
> Caused by commit
>
>   a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")
>
> I have used the mailbox tree from next-20151022 for today.
>
Lee, would you please send a fix for your last fix please?

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: linux-next: build failure after merge of the mailbox tree

2015-11-03 Thread Jassi Brar
On 1 November 2015 at 17:42, Stephen Rothwell  wrote:
> Hi Jassi,
>
> After merging the mailbox tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
>
> drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
> drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of 
> function '__io_virt' [-Werror=implicit-function-declaration]
>__io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
>^
>
> Caused by commit
>
>   a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")
>
> I have used the mailbox tree from next-20151022 for today.
>
Lee, would you please send a fix for your last fix please?

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


linux-next: build failure after merge of the mailbox tree

2015-11-01 Thread Stephen Rothwell
Hi Jassi,

After merging the mailbox tree, today's linux-next build (x86_64
allmodconfig) failed like this:

drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of function 
'__io_virt' [-Werror=implicit-function-declaration]
   __io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
   ^

Caused by commit

  a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")

I have used the mailbox tree from next-20151022 for today.

-- 
Cheers,
Stephen Rothwells...@canb.auug.org.au
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


linux-next: build failure after merge of the mailbox tree

2015-11-01 Thread Stephen Rothwell
Hi Jassi,

After merging the mailbox tree, today's linux-next build (x86_64
allmodconfig) failed like this:

drivers/mailbox/mailbox-test.c: In function 'mbox_test_receive_message':
drivers/mailbox/mailbox-test.c:226:11: error: implicit declaration of function 
'__io_virt' [-Werror=implicit-function-declaration]
   __io_virt(tdev->mmio), MBOX_MAX_MSG_LEN, true);
   ^

Caused by commit

  a133f8b65d59 ("mailbox: mailbox-test: Correctly repair Sparse warnings")

I have used the mailbox tree from next-20151022 for today.

-- 
Cheers,
Stephen Rothwells...@canb.auug.org.au
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/