[<prev] [next>] [day] [month] [year] [list]
Message-ID: <7f45d9390607181506x177f1ff4r32daebd3070da01c@mail.gmail.com>
Date: Tue, 18 Jul 2006 16:06:52 -0600
From: "Shaun Jackman" <sjackman@...il.com>
To: "uClinux development list" <uClinux-dev@...inux.org>,
LKML <linux-kernel@...r.kernel.org>,
"Nicolas Pitre" <nico@....org>
Subject: smc91x does not use netdev=
On 7/18/06, Shaun Jackman <sjackman@...il.com> wrote:
> I've compiled the smc91x driver into my kernel (CONFIG_SMC91X=y), but
> the boot process complains `IP-Config: No network devices available.'
> I tried using the netdev kernel parameter to start the smc91x driver
> (netdev=1,0x300,eth0 and ether=1,0x300,eth0), but I don't see any
> output on the console from the smc91x driver. The driver doesn't
> appear to be starting. How do I start the smc91x driver? I'm compiling
> linux.2.6.14.7-hsc0 for ARM nommu (Atmel AT91).
>
> Thanks,
> Shaun
The smc91x driver doesn't seem to pull its parameters from the netdev=
parameter. Instead, a `platform_bus' is used, which requires a call to
`platform_add_devices' -- an example of this below. Could the smc91x
driver be modified to pulls its parameters from netdev=?
Cheers,
Shaun
#include <linux/device.h>
static struct resource smc91x_resources[] = {
[0] = {
.name = "smc91x-regs",
.start = 0x300,
.end = 0x30f,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = 17,
.end = 17,
.flags = IORESOURCE_IRQ,
},
};
static struct platform_device smc91x_device = {
.name = "smc91x",
.id = -1,
.num_resources = ARRAY_SIZE(smc91x_resources),
.resource = smc91x_resources,
};
static struct platform_device *devices[] __initdata = {
&smc91x_device,
};
void __init pathport_init(void)
{
platform_add_devices(devices, ARRAY_SIZE(devices));
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists