mirror of https://github.com/hak5/openwrt.git
ar71xx: use the generic m25p80 registration code for the MZK-W04NU
SVN-Revision: 18938lede-17.01
parent
c0993046d6
commit
991a8d4398
|
@ -11,8 +11,6 @@
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
#include <linux/mtd/partitions.h>
|
#include <linux/mtd/partitions.h>
|
||||||
#include <linux/spi/spi.h>
|
|
||||||
#include <linux/spi/flash.h>
|
|
||||||
|
|
||||||
#include <asm/mips_machine.h>
|
#include <asm/mips_machine.h>
|
||||||
#include <asm/mach-ar71xx/ar71xx.h>
|
#include <asm/mach-ar71xx/ar71xx.h>
|
||||||
|
@ -21,6 +19,7 @@
|
||||||
#include "dev-ar913x-wmac.h"
|
#include "dev-ar913x-wmac.h"
|
||||||
#include "dev-gpio-buttons.h"
|
#include "dev-gpio-buttons.h"
|
||||||
#include "dev-leds-gpio.h"
|
#include "dev-leds-gpio.h"
|
||||||
|
#include "dev-m25p80.h"
|
||||||
|
|
||||||
#define MZK_W04NU_GPIO_LED_USB 0
|
#define MZK_W04NU_GPIO_LED_USB 0
|
||||||
#define MZK_W04NU_GPIO_LED_STATUS 1
|
#define MZK_W04NU_GPIO_LED_STATUS 1
|
||||||
|
@ -74,16 +73,6 @@ static struct flash_platform_data mzk_w04nu_flash_data = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct spi_board_info mzk_w04nu_spi_info[] = {
|
|
||||||
{
|
|
||||||
.bus_num = 0,
|
|
||||||
.chip_select = 0,
|
|
||||||
.max_speed_hz = 25000000,
|
|
||||||
.modalias = "m25p80",
|
|
||||||
.platform_data = &mzk_w04nu_flash_data,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct gpio_led mzk_w04nu_leds_gpio[] __initdata = {
|
static struct gpio_led mzk_w04nu_leds_gpio[] __initdata = {
|
||||||
{
|
{
|
||||||
.name = "mzk-w04nu:green:status",
|
.name = "mzk-w04nu:green:status",
|
||||||
|
@ -157,8 +146,7 @@ static void __init mzk_w04nu_setup(void)
|
||||||
ar71xx_add_device_eth(0);
|
ar71xx_add_device_eth(0);
|
||||||
ar71xx_add_device_eth(1);
|
ar71xx_add_device_eth(1);
|
||||||
|
|
||||||
ar71xx_add_device_spi(NULL, mzk_w04nu_spi_info,
|
ar71xx_add_device_m25p80(&mzk_w04nu_flash_data);
|
||||||
ARRAY_SIZE(mzk_w04nu_spi_info));
|
|
||||||
|
|
||||||
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio),
|
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio),
|
||||||
mzk_w04nu_leds_gpio);
|
mzk_w04nu_leds_gpio);
|
||||||
|
|
Loading…
Reference in New Issue