| 1 | /* |
| 2 | * Atheros AR934X SoCs built-in NAND Flash Controller support |
| 3 | * |
| 4 | * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #ifndef _ATH79_DEV_NFC_H |
| 12 | #define _ATH79_DEV_NFC_H |
| 13 | |
| 14 | #ifdef CONFIG_ATH79_DEV_NFC |
| 15 | void ath79_nfc_set_parts(struct mtd_partition *parts, int nr_parts); |
| 16 | void ath79_nfc_set_select_chip(void (*f)(int chip_no)); |
| 17 | void ath79_nfc_set_scan_fixup(int (*f)(struct mtd_info *mtd)); |
| 18 | void ath79_register_nfc(void); |
| 19 | #else |
| 20 | static inline void ath79_nfc_set_parts(struct mtd_partition *parts, |
| 21 | int nr_parts) {} |
| 22 | static inline void ath79_nfc_set_select_chip(void (*f)(int chip_no)) {} |
| 23 | static inline void ath79_nfc_set_scan_fixup(int (*f)(struct mtd_info *mtd)) {} |
| 24 | static inline void ath79_register_nfc(void) {} |
| 25 | #endif |
| 26 | |
| 27 | #endif /* _ATH79_DEV_NFC_H */ |
| 28 | |