All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the wireless tree
@ 2011-05-16  2:02 Stephen Rothwell
  2011-05-16 18:08 ` John W. Linville
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Rothwell @ 2011-05-16  2:02 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Rhyland Klein, Anantha Idapalapati

[-- Attachment #1: Type: text/plain, Size: 722 bytes --]

Hi John,

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

ERROR: "clk_get" [net/rfkill/rfkill-gpio.ko] undefined!
ERROR: "clk_enable" [net/rfkill/rfkill-gpio.ko] undefined!
ERROR: "clk_put" [net/rfkill/rfkill-gpio.ko] undefined!
ERROR: "clk_disable" [net/rfkill/rfkill-gpio.ko] undefined!

Caused by commit 165d625850e8 ("net: rfkill: add generic gpio rfkill
driver").

I have used the wireless tree from next-20110513 for today.

P.S. is the Author information for that commit correct?  It has a From:
line near the bottom of the commit message.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: linux-next: build failure after merge of the wireless tree
  2011-05-16  2:02 linux-next: build failure after merge of the wireless tree Stephen Rothwell
@ 2011-05-16 18:08 ` John W. Linville
  0 siblings, 0 replies; 15+ messages in thread
From: John W. Linville @ 2011-05-16 18:08 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: linux-next, linux-kernel, Rhyland Klein, Anantha Idapalapati

On Mon, May 16, 2011 at 12:02:27PM +1000, Stephen Rothwell wrote:
> Hi John,
> 
> After merging the wireless tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> ERROR: "clk_get" [net/rfkill/rfkill-gpio.ko] undefined!
> ERROR: "clk_enable" [net/rfkill/rfkill-gpio.ko] undefined!
> ERROR: "clk_put" [net/rfkill/rfkill-gpio.ko] undefined!
> ERROR: "clk_disable" [net/rfkill/rfkill-gpio.ko] undefined!
> 
> Caused by commit 165d625850e8 ("net: rfkill: add generic gpio rfkill
> driver").
> 
> I have used the wireless tree from next-20110513 for today.

Yeah, I think I'm going to drop this for now until we can sort this out.

> P.S. is the Author information for that commit correct?  It has a From:
> line near the bottom of the commit message.

That does look strange.  I'll ask Rhyland to make that more clear.

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

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

* linux-next: build failure after merge of the wireless tree
@ 2011-10-12  2:36 ` Stephen Rothwell
  0 siblings, 0 replies; 15+ messages in thread
From: Stephen Rothwell @ 2011-10-12  2:36 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Jiri Pirko, David Miller, netdev,
	Arend van Spriel

[-- Attachment #1: Type: text/plain, Size: 1948 bytes --]

Hi John,

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

drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1131:2: error: unknown field 'ndo_set_multicast_list' specified in initializer
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1132:1: warning: initialization from incompatible pointer type [enabled by default]
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1132:1: warning: (near initialization for 'brcmf_netdev_ops_pri.ndo_validate_addr') [enabled by default]

Caused by commit 5b435de0d786 ("net: wireless: add brcm80211 drivers")
interacting with commit b81693d9149c ("net: remove ndo_set_multicast_list
callback") from the net-next tree.

I have applied the following merge fixup patch for today.

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Wed, 12 Oct 2011 13:33:10 +1100
Subject: [PATCH] net: wireless: brcm80211: replace ndo_set_multicast_list  with ndo_set_rx_mode

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c b/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
index 99ba5e3..03607ca 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
@@ -1128,7 +1128,7 @@ static struct net_device_ops brcmf_netdev_ops_pri = {
 	.ndo_do_ioctl = brcmf_netdev_ioctl_entry,
 	.ndo_start_xmit = brcmf_netdev_start_xmit,
 	.ndo_set_mac_address = brcmf_netdev_set_mac_address,
-	.ndo_set_multicast_list = brcmf_netdev_set_multicast_list
+	.ndo_set_rx_mode = brcmf_netdev_set_multicast_list
 };
 
 int brcmf_net_attach(struct brcmf_pub *drvr, int ifidx)
-- 
1.7.6.3

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

* linux-next: build failure after merge of the wireless tree
@ 2011-10-12  2:36 ` Stephen Rothwell
  0 siblings, 0 replies; 15+ messages in thread
From: Stephen Rothwell @ 2011-10-12  2:36 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Jiri Pirko, David Miller, netdev,
	Arend van Spriel

[-- Attachment #1: Type: text/plain, Size: 1948 bytes --]

Hi John,

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

drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1131:2: error: unknown field 'ndo_set_multicast_list' specified in initializer
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1132:1: warning: initialization from incompatible pointer type [enabled by default]
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c:1132:1: warning: (near initialization for 'brcmf_netdev_ops_pri.ndo_validate_addr') [enabled by default]

Caused by commit 5b435de0d786 ("net: wireless: add brcm80211 drivers")
interacting with commit b81693d9149c ("net: remove ndo_set_multicast_list
callback") from the net-next tree.

I have applied the following merge fixup patch for today.

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Wed, 12 Oct 2011 13:33:10 +1100
Subject: [PATCH] net: wireless: brcm80211: replace ndo_set_multicast_list  with ndo_set_rx_mode

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c b/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
index 99ba5e3..03607ca 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
@@ -1128,7 +1128,7 @@ static struct net_device_ops brcmf_netdev_ops_pri = {
 	.ndo_do_ioctl = brcmf_netdev_ioctl_entry,
 	.ndo_start_xmit = brcmf_netdev_start_xmit,
 	.ndo_set_mac_address = brcmf_netdev_set_mac_address,
-	.ndo_set_multicast_list = brcmf_netdev_set_multicast_list
+	.ndo_set_rx_mode = brcmf_netdev_set_multicast_list
 };
 
 int brcmf_net_attach(struct brcmf_pub *drvr, int ifidx)
-- 
1.7.6.3

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: linux-next: build failure after merge of the wireless tree
  2011-06-23  3:03 ` Stephen Rothwell
  (?)
  (?)
@ 2011-06-28 18:11 ` Gustavo F. Padovan
  -1 siblings, 0 replies; 15+ messages in thread
From: Gustavo F. Padovan @ 2011-06-28 18:11 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: John W. Linville, linux-next, linux-kernel, Anderson Briglia,
	Anderson Lizardo, Bruna Moreira, Vinicius Costa Gomes,
	Alexey Dobriyan, David Miller, netdev

Hi John,

* Stephen Rothwell <sfr@canb.auug.org.au> [2011-06-23 13:03:17 +1000]:

> Hi John,
> 
> After merging the wireless tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> net/bluetooth/smp.c: In function 'smp_e':
> net/bluetooth/smp.c:49:21: error: storage size of 'sg' isn't known
> net/bluetooth/smp.c:67:2: error: implicit declaration of function 'sg_init_one'
> net/bluetooth/smp.c:49:21: warning: unused variable 'sg'
> 
> Caused by commit d22ef0bc83c5 ("Bluetooth: Add LE SMP Cryptoolbox
> functions").  Missing include file, presumably.  This batch has been in
> the bluetooth tree since June 14, so it may have been exposed by the
> removal of linux/mm.h from netdevice.h ...
> 
> I have added the following patch as a merge fix up for today.
> 
> From: Stephen Rothwell <sfr@canb.auug.org.au>
> Date: Thu, 23 Jun 2011 12:58:55 +1000
> Subject: [PATCH] Bluetooth: include scatterlist.h where needed
> 
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
>  net/bluetooth/smp.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
> index 52e9ec2..a36f870 100644
> --- a/net/bluetooth/smp.c
> +++ b/net/bluetooth/smp.c
> @@ -25,6 +25,7 @@
>  #include <net/bluetooth/l2cap.h>
>  #include <net/bluetooth/smp.h>
>  #include <linux/crypto.h>
> +#include <linux/scatterlist.h>
>  #include <crypto/b128ops.h>

Thanks for pick this patch to wireless tree ;) 

	Gustavo

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

* Re: linux-next: build failure after merge of the wireless tree
  2011-06-23  3:03 ` Stephen Rothwell
  (?)
@ 2011-06-23  3:46 ` David Miller
  -1 siblings, 0 replies; 15+ messages in thread
From: David Miller @ 2011-06-23  3:46 UTC (permalink / raw)
  To: sfr
  Cc: linville, linux-next, linux-kernel, anderson.briglia,
	anderson.lizardo, bruna.moreira, vinicius.gomes, padovan,
	adobriyan, netdev

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 23 Jun 2011 13:03:17 +1000

> Caused by commit d22ef0bc83c5 ("Bluetooth: Add LE SMP Cryptoolbox
> functions").  Missing include file, presumably.  This batch has been in
> the bluetooth tree since June 14, so it may have been exposed by the
> removal of linux/mm.h from netdevice.h ...

This is almost certainly the reason.

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

* linux-next: build failure after merge of the wireless tree
@ 2011-06-23  3:03 ` Stephen Rothwell
  0 siblings, 0 replies; 15+ messages in thread
From: Stephen Rothwell @ 2011-06-23  3:03 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Anderson Briglia, Anderson Lizardo,
	Bruna Moreira, Vinicius Costa Gomes, Gustavo F. Padovan,
	Alexey Dobriyan, David Miller, netdev

Hi John,

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

net/bluetooth/smp.c: In function 'smp_e':
net/bluetooth/smp.c:49:21: error: storage size of 'sg' isn't known
net/bluetooth/smp.c:67:2: error: implicit declaration of function 'sg_init_one'
net/bluetooth/smp.c:49:21: warning: unused variable 'sg'

Caused by commit d22ef0bc83c5 ("Bluetooth: Add LE SMP Cryptoolbox
functions").  Missing include file, presumably.  This batch has been in
the bluetooth tree since June 14, so it may have been exposed by the
removal of linux/mm.h from netdevice.h ...

I have added the following patch as a merge fix up for today.

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 23 Jun 2011 12:58:55 +1000
Subject: [PATCH] Bluetooth: include scatterlist.h where needed

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 net/bluetooth/smp.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 52e9ec2..a36f870 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -25,6 +25,7 @@
 #include <net/bluetooth/l2cap.h>
 #include <net/bluetooth/smp.h>
 #include <linux/crypto.h>
+#include <linux/scatterlist.h>
 #include <crypto/b128ops.h>
 
 #define SMP_TIMEOUT 30000 /* 30 seconds */
-- 
1.7.5.4

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

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

* linux-next: build failure after merge of the wireless tree
@ 2011-06-23  3:03 ` Stephen Rothwell
  0 siblings, 0 replies; 15+ messages in thread
From: Stephen Rothwell @ 2011-06-23  3:03 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Anderson Briglia, Anderson Lizardo,
	Bruna Moreira, Vinicius Costa Gomes, Gustavo F. Padovan,
	Alexey Dobriyan, David Miller, netdev

Hi John,

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

net/bluetooth/smp.c: In function 'smp_e':
net/bluetooth/smp.c:49:21: error: storage size of 'sg' isn't known
net/bluetooth/smp.c:67:2: error: implicit declaration of function 'sg_init_one'
net/bluetooth/smp.c:49:21: warning: unused variable 'sg'

Caused by commit d22ef0bc83c5 ("Bluetooth: Add LE SMP Cryptoolbox
functions").  Missing include file, presumably.  This batch has been in
the bluetooth tree since June 14, so it may have been exposed by the
removal of linux/mm.h from netdevice.h ...

I have added the following patch as a merge fix up for today.

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 23 Jun 2011 12:58:55 +1000
Subject: [PATCH] Bluetooth: include scatterlist.h where needed

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 net/bluetooth/smp.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 52e9ec2..a36f870 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -25,6 +25,7 @@
 #include <net/bluetooth/l2cap.h>
 #include <net/bluetooth/smp.h>
 #include <linux/crypto.h>
+#include <linux/scatterlist.h>
 #include <crypto/b128ops.h>
 
 #define SMP_TIMEOUT 30000 /* 30 seconds */
-- 
1.7.5.4

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

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

* Re: linux-next: build failure after merge of the wireless tree
  2010-06-23  2:51 Stephen Rothwell
@ 2010-06-23 14:57 ` John W. Linville
  0 siblings, 0 replies; 15+ messages in thread
From: John W. Linville @ 2010-06-23 14:57 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, linux-kernel

On Wed, Jun 23, 2010 at 12:51:49PM +1000, Stephen Rothwell wrote:
> Hi John,
> 
> After merging the wireless tree, today's linux-next build (x86_64 allmodconfig)
> failed like this:
> 
> ERROR: "mesh_handler_def" [drivers/net/wireless/libertas/libertas.ko] undefined!
> 
> Caused by commit cbca36ab906ce8c8d959eca1e0b5465e9182b0f0 ("Libertas:
> cfg80211 support") which removed mesh_handler_def even though there is
> still a reference to it in drivers/net/wireless/libertas/mesh.c when
> WIRELESS_EXT is defined.
> 
> I have used the wireless tree from next-20100622 for today.

Yes, sorry about that!  I'll correct it today.

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

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

* linux-next: build failure after merge of the wireless tree
@ 2010-06-23  2:51 Stephen Rothwell
  2010-06-23 14:57 ` John W. Linville
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Rothwell @ 2010-06-23  2:51 UTC (permalink / raw)
  To: John W. Linville; +Cc: linux-next, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 607 bytes --]

Hi John,

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

ERROR: "mesh_handler_def" [drivers/net/wireless/libertas/libertas.ko] undefined!

Caused by commit cbca36ab906ce8c8d959eca1e0b5465e9182b0f0 ("Libertas:
cfg80211 support") which removed mesh_handler_def even though there is
still a reference to it in drivers/net/wireless/libertas/mesh.c when
WIRELESS_EXT is defined.

I have used the wireless tree from next-20100622 for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

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

* Re: linux-next: build failure after merge of the wireless tree
  2010-03-10  5:53   ` Juuso Oikarinen
@ 2010-03-10 11:19     ` Luciano Coelho
  -1 siblings, 0 replies; 15+ messages in thread
From: Luciano Coelho @ 2010-03-10 11:19 UTC (permalink / raw)
  To: Oikarinen Juuso (Nokia-D/Tampere)
  Cc: ext Stephen Rothwell, John W. Linville, linux-next, linux-kernel,
	Paasikivi Teemu.3 (EXT-Ixonos/Tampere)

On Wed, 2010-03-10 at 06:53 +0100, Oikarinen Juuso (Nokia-D/Tampere)
wrote:
> Thinking about it, the assumption is correct. The implementation can
> currently work only on ARM, as the wl1271 requires and out-of-band IRQ
> line which is currently implemented with GPIO's.
> 
> -Juuso
> 
> On Wed, 2010-03-10 at 04:36 +0100, ext Stephen Rothwell wrote:
> > Hi John,
> > 
> > After merging the wireless tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> > 
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:31:23: error: plat/gpio.h: No such file or directory
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_read':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:121: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_write':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:144: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_probe':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:198: error: implicit declaration of function 'gpio_to_irq'
> > 
> > Caused by commit 5129dffebd4eab1749e63bb4a1b7abdc92903227 ("wl1271:
> > Initial SDIO implementation").  I assume this is only meant to be built
> > for arm?

I'll send a patch to fix this problem soon.  Sorry for the trouble.

-- 
Cheers,
Luca.


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

* Re: linux-next: build failure after merge of the wireless tree
@ 2010-03-10 11:19     ` Luciano Coelho
  0 siblings, 0 replies; 15+ messages in thread
From: Luciano Coelho @ 2010-03-10 11:19 UTC (permalink / raw)
  To: Oikarinen Juuso (Nokia-D/Tampere)
  Cc: ext Stephen Rothwell, John W. Linville, linux-next, linux-kernel,
	Paasikivi Teemu.3 (EXT-Ixonos/Tampere)

On Wed, 2010-03-10 at 06:53 +0100, Oikarinen Juuso (Nokia-D/Tampere)
wrote:
> Thinking about it, the assumption is correct. The implementation can
> currently work only on ARM, as the wl1271 requires and out-of-band IRQ
> line which is currently implemented with GPIO's.
> 
> -Juuso
> 
> On Wed, 2010-03-10 at 04:36 +0100, ext Stephen Rothwell wrote:
> > Hi John,
> > 
> > After merging the wireless tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> > 
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:31:23: error: plat/gpio.h: No such file or directory
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_read':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:121: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_write':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:144: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> > drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_probe':
> > drivers/net/wireless/wl12xx/wl1271_sdio.c:198: error: implicit declaration of function 'gpio_to_irq'
> > 
> > Caused by commit 5129dffebd4eab1749e63bb4a1b7abdc92903227 ("wl1271:
> > Initial SDIO implementation").  I assume this is only meant to be built
> > for arm?

I'll send a patch to fix this problem soon.  Sorry for the trouble.

-- 
Cheers,
Luca.

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

* Re: linux-next: build failure after merge of the wireless tree
  2010-03-10  3:36 Stephen Rothwell
@ 2010-03-10  5:53   ` Juuso Oikarinen
  0 siblings, 0 replies; 15+ messages in thread
From: Juuso Oikarinen @ 2010-03-10  5:53 UTC (permalink / raw)
  To: ext Stephen Rothwell
  Cc: John W. Linville, linux-next, linux-kernel,
	Paasikivi Teemu.3 (EXT-Ixonos/Tampere),
	Coelho Luciano Roth

Hi,

Thinking about it, the assumption is correct. The implementation can
currently work only on ARM, as the wl1271 requires and out-of-band IRQ
line which is currently implemented with GPIO's.

-Juuso

On Wed, 2010-03-10 at 04:36 +0100, ext Stephen Rothwell wrote:
> Hi John,
> 
> After merging the wireless tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> drivers/net/wireless/wl12xx/wl1271_sdio.c:31:23: error: plat/gpio.h: No such file or directory
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_read':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:121: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_write':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:144: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_probe':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:198: error: implicit declaration of function 'gpio_to_irq'
> 
> Caused by commit 5129dffebd4eab1749e63bb4a1b7abdc92903227 ("wl1271:
> Initial SDIO implementation").  I assume this is only meant to be built
> for arm?
> 
> I have used the version of the wireless tree from next-20100309 for today.
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> http://www.canb.auug.org.au/~sfr/
> 
> P.S. I also got the following warnings:
> 
> drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_8366_ap_process':
> drivers/net/wireless/mwl8k.c:752: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_sta_process':
> drivers/net/wireless/mwl8k.c:854: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/libertas_tf/main.c: In function 'lbtf_rx':
> drivers/net/wireless/libertas_tf/main.c:497: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/rt2x00/rt2x00dev.c: In function 'rt2x00lib_rxdone':
> drivers/net/wireless/rt2x00/rt2x00dev.c:437: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c: In function 'iwl3945_rx_reply_rx':
> drivers/net/wireless/iwlwifi/iwl-3945.c:682: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:685: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:689: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:697: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:711: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/p54/txrx.c: In function 'p54_rx_data':
> drivers/net/wireless/p54/txrx.c:353: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ar9170/main.c: In function 'ar9170_rx_phy_status':
> drivers/net/wireless/ath/ar9170/main.c:928: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/b43/xmit.c: In function 'b43_rx':
> drivers/net/wireless/b43/xmit.c:613: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/b43legacy/xmit.c: In function 'b43legacy_rx':
> drivers/net/wireless/b43legacy/xmit.c:551: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/wl12xx/wl1251_rx.c: In function 'wl1251_rx_status':
> drivers/net/wireless/wl12xx/wl1251_rx.c:80: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath5k/base.c: In function 'ath5k_tasklet_rx':
> drivers/net/wireless/ath/ath5k/base.c:1941: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath5k/base.c:1942: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath9k/common.c: In function 'ath9k_cmn_rx_skb_preprocess':
> drivers/net/wireless/ath/ath9k/common.c:215: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/wl12xx/wl1271_rx.c: In function 'wl1271_rx_status':
> drivers/net/wireless/wl12xx/wl1271_rx.c:139: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c: In function 'iwl_rx_reply_rx':
> drivers/net/wireless/iwlwifi/iwl-rx.c:1145: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c:1147: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c:1160: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)



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

* Re: linux-next: build failure after merge of the wireless tree
@ 2010-03-10  5:53   ` Juuso Oikarinen
  0 siblings, 0 replies; 15+ messages in thread
From: Juuso Oikarinen @ 2010-03-10  5:53 UTC (permalink / raw)
  To: ext Stephen Rothwell
  Cc: John W. Linville, linux-next, linux-kernel,
	Paasikivi Teemu.3 (EXT-Ixonos/Tampere),
	Coelho Luciano Roth

Hi,

Thinking about it, the assumption is correct. The implementation can
currently work only on ARM, as the wl1271 requires and out-of-band IRQ
line which is currently implemented with GPIO's.

-Juuso

On Wed, 2010-03-10 at 04:36 +0100, ext Stephen Rothwell wrote:
> Hi John,
> 
> After merging the wireless tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> drivers/net/wireless/wl12xx/wl1271_sdio.c:31:23: error: plat/gpio.h: No such file or directory
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_read':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:121: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_write':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:144: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
> drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_probe':
> drivers/net/wireless/wl12xx/wl1271_sdio.c:198: error: implicit declaration of function 'gpio_to_irq'
> 
> Caused by commit 5129dffebd4eab1749e63bb4a1b7abdc92903227 ("wl1271:
> Initial SDIO implementation").  I assume this is only meant to be built
> for arm?
> 
> I have used the version of the wireless tree from next-20100309 for today.
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> http://www.canb.auug.org.au/~sfr/
> 
> P.S. I also got the following warnings:
> 
> drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_8366_ap_process':
> drivers/net/wireless/mwl8k.c:752: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_sta_process':
> drivers/net/wireless/mwl8k.c:854: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/libertas_tf/main.c: In function 'lbtf_rx':
> drivers/net/wireless/libertas_tf/main.c:497: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/rt2x00/rt2x00dev.c: In function 'rt2x00lib_rxdone':
> drivers/net/wireless/rt2x00/rt2x00dev.c:437: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c: In function 'iwl3945_rx_reply_rx':
> drivers/net/wireless/iwlwifi/iwl-3945.c:682: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:685: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:689: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:697: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-3945.c:711: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/p54/txrx.c: In function 'p54_rx_data':
> drivers/net/wireless/p54/txrx.c:353: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ar9170/main.c: In function 'ar9170_rx_phy_status':
> drivers/net/wireless/ath/ar9170/main.c:928: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/b43/xmit.c: In function 'b43_rx':
> drivers/net/wireless/b43/xmit.c:613: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/b43legacy/xmit.c: In function 'b43legacy_rx':
> drivers/net/wireless/b43legacy/xmit.c:551: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/wl12xx/wl1251_rx.c: In function 'wl1251_rx_status':
> drivers/net/wireless/wl12xx/wl1251_rx.c:80: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath5k/base.c: In function 'ath5k_tasklet_rx':
> drivers/net/wireless/ath/ath5k/base.c:1941: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath5k/base.c:1942: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/ath/ath9k/common.c: In function 'ath9k_cmn_rx_skb_preprocess':
> drivers/net/wireless/ath/ath9k/common.c:215: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/wl12xx/wl1271_rx.c: In function 'wl1271_rx_status':
> drivers/net/wireless/wl12xx/wl1271_rx.c:139: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c: In function 'iwl_rx_reply_rx':
> drivers/net/wireless/iwlwifi/iwl-rx.c:1145: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c:1147: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
> drivers/net/wireless/iwlwifi/iwl-rx.c:1160: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)

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

* linux-next: build failure after merge of the wireless tree
@ 2010-03-10  3:36 Stephen Rothwell
  2010-03-10  5:53   ` Juuso Oikarinen
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Rothwell @ 2010-03-10  3:36 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-next, linux-kernel, Teemu Paasikivi, Juuso Oikarinen

[-- Attachment #1: Type: text/plain, Size: 4598 bytes --]

Hi John,

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

drivers/net/wireless/wl12xx/wl1271_sdio.c:31:23: error: plat/gpio.h: No such file or directory
drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_read':
drivers/net/wireless/wl12xx/wl1271_sdio.c:121: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_sdio_raw_write':
drivers/net/wireless/wl12xx/wl1271_sdio.c:144: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
drivers/net/wireless/wl12xx/wl1271_sdio.c: In function 'wl1271_probe':
drivers/net/wireless/wl12xx/wl1271_sdio.c:198: error: implicit declaration of function 'gpio_to_irq'

Caused by commit 5129dffebd4eab1749e63bb4a1b7abdc92903227 ("wl1271:
Initial SDIO implementation").  I assume this is only meant to be built
for arm?

I have used the version of the wireless tree from next-20100309 for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

P.S. I also got the following warnings:

drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_8366_ap_process':
drivers/net/wireless/mwl8k.c:752: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/mwl8k.c: In function 'mwl8k_rxd_sta_process':
drivers/net/wireless/mwl8k.c:854: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/libertas_tf/main.c: In function 'lbtf_rx':
drivers/net/wireless/libertas_tf/main.c:497: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/rt2x00/rt2x00dev.c: In function 'rt2x00lib_rxdone':
drivers/net/wireless/rt2x00/rt2x00dev.c:437: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-3945.c: In function 'iwl3945_rx_reply_rx':
drivers/net/wireless/iwlwifi/iwl-3945.c:682: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-3945.c:685: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-3945.c:689: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-3945.c:697: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-3945.c:711: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/p54/txrx.c: In function 'p54_rx_data':
drivers/net/wireless/p54/txrx.c:353: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/ath/ar9170/main.c: In function 'ar9170_rx_phy_status':
drivers/net/wireless/ath/ar9170/main.c:928: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/b43/xmit.c: In function 'b43_rx':
drivers/net/wireless/b43/xmit.c:613: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/b43legacy/xmit.c: In function 'b43legacy_rx':
drivers/net/wireless/b43legacy/xmit.c:551: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/wl12xx/wl1251_rx.c: In function 'wl1251_rx_status':
drivers/net/wireless/wl12xx/wl1251_rx.c:80: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/ath/ath5k/base.c: In function 'ath5k_tasklet_rx':
drivers/net/wireless/ath/ath5k/base.c:1941: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/ath/ath5k/base.c:1942: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/ath/ath9k/common.c: In function 'ath9k_cmn_rx_skb_preprocess':
drivers/net/wireless/ath/ath9k/common.c:215: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/wl12xx/wl1271_rx.c: In function 'wl1271_rx_status':
drivers/net/wireless/wl12xx/wl1271_rx.c:139: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-rx.c: In function 'iwl_rx_reply_rx':
drivers/net/wireless/iwlwifi/iwl-rx.c:1145: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-rx.c:1147: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)
drivers/net/wireless/iwlwifi/iwl-rx.c:1160: warning: 'noise' is deprecated (declared at include/net/mac80211.h:557)

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

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

end of thread, other threads:[~2011-10-12  2:36 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-16  2:02 linux-next: build failure after merge of the wireless tree Stephen Rothwell
2011-05-16 18:08 ` John W. Linville
  -- strict thread matches above, loose matches on Subject: below --
2011-10-12  2:36 Stephen Rothwell
2011-10-12  2:36 ` Stephen Rothwell
2011-06-23  3:03 Stephen Rothwell
2011-06-23  3:03 ` Stephen Rothwell
2011-06-23  3:46 ` David Miller
2011-06-28 18:11 ` Gustavo F. Padovan
2010-06-23  2:51 Stephen Rothwell
2010-06-23 14:57 ` John W. Linville
2010-03-10  3:36 Stephen Rothwell
2010-03-10  5:53 ` Juuso Oikarinen
2010-03-10  5:53   ` Juuso Oikarinen
2010-03-10 11:19   ` Luciano Coelho
2010-03-10 11:19     ` Luciano Coelho

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.