move device registration function prototypes into a separate header file
[librecmc/librecmc.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-aw-nr580.c
1 /*
2  *  AzureWave AW-NR580 board support
3  *
4  *  Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5  *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6  *
7  *  This program is free software; you can redistribute it and/or modify it
8  *  under the terms of the GNU General Public License version 2 as published
9  *  by the Free Software Foundation.
10  */
11
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/input.h>
18
19 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
21 #include <asm/mach-ar71xx/pci.h>
22
23 #include "devices.h"
24
25 static struct spi_board_info aw_nr580_spi_info[] = {
26         {
27                 .bus_num        = 0,
28                 .chip_select    = 0,
29                 .max_speed_hz   = 25000000,
30                 .modalias       = "m25p80",
31         }
32 };
33
34 static void __init aw_nr580_setup(void)
35 {
36         ar71xx_add_device_spi(NULL, aw_nr580_spi_info,
37                                         ARRAY_SIZE(aw_nr580_spi_info));
38 }
39
40 MIPS_MACHINE(AR71XX_MACH_AW_NR580, "AzureWave AW-NR580", aw_nr580_setup);