mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ramips: rt3883: add device registration code for the SPI controller
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31922 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
#include <linux/mtd/physmap.h>
|
||||
#include <linux/mtd/partitions.h>
|
||||
#include <linux/dma-mapping.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/clk.h>
|
||||
@@ -378,3 +379,25 @@ void __init rt3883_register_nand(void)
|
||||
{
|
||||
platform_device_register(&rt3883_nand_device);
|
||||
}
|
||||
|
||||
static struct resource rt3883_spi_resources[] = {
|
||||
{
|
||||
.flags = IORESOURCE_MEM,
|
||||
.start = RT3883_SPI_BASE,
|
||||
.end = RT3883_SPI_BASE + RT3883_SPI_SIZE - 1,
|
||||
},
|
||||
};
|
||||
|
||||
static struct platform_device rt3883_spi_device = {
|
||||
.name = "ramips-spi",
|
||||
.id = 0,
|
||||
.resource = rt3883_spi_resources,
|
||||
.num_resources = ARRAY_SIZE(rt3883_spi_resources),
|
||||
};
|
||||
|
||||
void __init rt3883_register_spi(struct spi_board_info *info, int n)
|
||||
{
|
||||
spi_register_board_info(info, n);
|
||||
platform_device_register(&rt3883_spi_device);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user