[Blackfin] arch: Enable NET2272 on BF561-EZkit - remove request_mem_region
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
parent
f1bceb47b3
commit
83d9cde08b
|
@ -133,6 +133,27 @@ static struct platform_device isp1362_hcd_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
|
||||||
|
static struct resource net2272_bfin_resources[] = {
|
||||||
|
{
|
||||||
|
.start = 0x2C000000,
|
||||||
|
.end = 0x2C000000 + 0x7F,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
}, {
|
||||||
|
.start = IRQ_PF10,
|
||||||
|
.end = IRQ_PF10,
|
||||||
|
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device net2272_bfin_device = {
|
||||||
|
.name = "net2272",
|
||||||
|
.id = -1,
|
||||||
|
.num_resources = ARRAY_SIZE(net2272_bfin_resources),
|
||||||
|
.resource = net2272_bfin_resources,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* USB-LAN EzExtender board
|
* USB-LAN EzExtender board
|
||||||
* Driver needs to know address, irq and flag pin.
|
* Driver needs to know address, irq and flag pin.
|
||||||
|
@ -381,6 +402,10 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
&ax88180_device,
|
&ax88180_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
|
||||||
|
&net2272_bfin_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
&bfin_spi0_device,
|
&bfin_spi0_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue