| 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License as published by |
| 4 | * the Free Software Foundation; either version 2 of the License, or |
| 5 | * (at your option) any later version. |
| 6 | * |
| 7 | * Copyright (C) 2011 Thomas Langer <thomas.langer@lantiq.com> |
| 8 | * Copyright (C) 2011 John Crispin <blogic@openwrt.org> |
| 9 | */ |
| 10 | |
| 11 | #ifndef _FALCON_DEVICES_H__ |
| 12 | #define _FALCON_DEVICES_H__ |
| 13 | |
| 14 | #include <linux/spi/spi.h> |
| 15 | #include <linux/spi/flash.h> |
| 16 | |
| 17 | #include "../devices.h" |
| 18 | |
| 19 | extern void falcon_register_nand(void); |
| 20 | extern void falcon_register_gpio(void); |
| 21 | extern void falcon_register_gpio_extra(void); |
| 22 | extern void falcon_register_spi_flash(struct spi_board_info *data); |
| 23 | extern void falcon_register_i2c(void); |
| 24 | |
| 25 | #endif |
| 26 | |