• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  arch/arm/mach-omap2/gpmc-onenand.h
3  *
4  *  This program is free software; you can redistribute  it and/or modify it
5  *  under  the terms of  the GNU General  Public License as published by the
6  *  Free Software Foundation;  either version 2 of the  License, or (at your
7  *  option) any later version.
8  */
9 
10 #ifndef	__OMAP2_GPMC_ONENAND_H
11 #define	__OMAP2_GPMC_ONENAND_H
12 
13 #include <linux/platform_data/mtd-onenand-omap2.h>
14 
15 #if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2)
16 extern void gpmc_onenand_init(struct omap_onenand_platform_data *d);
17 #else
18 #define board_onenand_data	NULL
gpmc_onenand_init(struct omap_onenand_platform_data * d)19 static inline void gpmc_onenand_init(struct omap_onenand_platform_data *d)
20 {
21 }
22 #endif
23 
24 #endif
25