The address for Jan Engelhardt is bouncing ...
--
Cheers,
Stephen Rothwell s...@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
After merging, today's linux-next build (sparc64 defconfig) failed like
this:
In file included from include/linux/netfilter_ipv4/ip_tables.h:29,
from arch/sparc/kernel/sys_sparc32.c:47:
include/linux/netfilter/x_tables.h:525: error: expected declaration specifiers or '...' before 'nf_hookfn'
Caused by commit 2b95efe7f6bb750256a702cc32d33b0cb2cd8223 ("netfilter:
xtables: use xt_table for hook instantiation"). Missing direct include
of linux/netfilter.h?
I have reverted that commit for today.
Hi Stephen
David took care of this already.
http://marc.info/?l=linux-netdev&m=126636301220734&w=2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Excellent, thanks.
After merging the scsi-post-merge tree, today's linux-next build (powerpc
allyesconfig) failed like this:
drivers/net/greth.c: In function 'greth_of_probe':
drivers/net/greth.c:1414: error: implicit declaration of function 'of_ioremap'
drivers/net/greth.c:1414: error: 'struct of_device' has no member named 'resource'
drivers/net/greth.c:1415: error: 'struct of_device' has no member named 'resource'
drivers/net/greth.c:1426: error: 'struct of_device' has no member named 'irqs'
drivers/net/greth.c:1580: error: implicit declaration of function 'of_iounmap'
drivers/net/greth.c:1580: error: 'struct of_device' has no member named 'resource'
drivers/net/greth.c:1580: error: 'struct of_device' has no member named 'resource'
drivers/net/greth.c: In function 'greth_of_remove':
drivers/net/greth.c:1605: error: 'struct of_device' has no member named 'resource'
drivers/net/greth.c:1605: error: 'struct of_device' has no member named 'resource'
Caused by commit d4c41139df6e74c6fff0cbac43e51cab782133be ("net: Add
Aeroflex Gaisler 10/100/1G Ethernet MAC driver").
I assume that this driver was written and tested only on Sparc ... maybe
it should depend on SPARC?
I have reverted that commit for today.
> I assume that this driver was written and tested only on Sparc ... maybe
> it should depend on SPARC?
>
> I have reverted that commit for today.
I'll take a look at what it really depends upon.
Thanks.
> I assume that this driver was written and tested only on Sparc
> ... maybe it should depend on SPARC?
Indeed, it should. I thought for some reason that all OF
platforms have of_remap() and of_device->resource[], oh
well :-)
Will commit the following, thanks!
net: Make GRETH driver depend on SPARC.
Reported by Stephen Rothwell.
Signed-off-by: David S. Miller <da...@davemloft.net>
---
drivers/net/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 17ff15f..46af867 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -997,7 +997,7 @@ config ETHOC
config GRETH
tristate "Aeroflex Gaisler GRETH Ethernet MAC support"
- depends on OF
+ depends on SPARC
select PHYLIB
select CRC32
help
--
1.6.6.1
On Thu, 18 Feb 2010 23:33:21 -0800 (PST) David Miller <da...@davemloft.net> wrote:
>
> From: Stephen Rothwell <s...@canb.auug.org.au>
> Date: Fri, 19 Feb 2010 17:37:13 +1100
>
> > I assume that this driver was written and tested only on Sparc
> > ... maybe it should depend on SPARC?
>
> Indeed, it should. I thought for some reason that all OF
> platforms have of_remap() and of_device->resource[], oh
> well :-)
>
> Will commit the following, thanks!
>
> net: Make GRETH driver depend on SPARC.
Thanks.