staging:iio:gyro:adis16260 fix missing num_channels setup.
[linux-2.6/next.git] / arch / arm / mach-omap2 / common-board-devices.h
blob679719051df5bdfa70569ead1291e9206604ce6a
1 #ifndef __OMAP_COMMON_BOARD_DEVICES__
2 #define __OMAP_COMMON_BOARD_DEVICES__
4 #define NAND_BLOCK_SIZE SZ_128K
6 struct twl4030_platform_data;
7 struct mtd_partition;
9 void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq,
10 struct twl4030_platform_data *pmic_data);
12 static inline void omap2_pmic_init(const char *pmic_type,
13 struct twl4030_platform_data *pmic_data)
15 omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data);
18 static inline void omap3_pmic_init(const char *pmic_type,
19 struct twl4030_platform_data *pmic_data)
21 omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data);
24 static inline void omap4_pmic_init(const char *pmic_type,
25 struct twl4030_platform_data *pmic_data)
27 /* Phoenix Audio IC needs I2C1 to start with 400 KHz or less */
28 omap_pmic_init(1, 400, pmic_type, OMAP44XX_IRQ_SYS_1N, pmic_data);
31 struct ads7846_platform_data;
33 void omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce,
34 struct ads7846_platform_data *board_pdata);
35 void omap_nand_flash_init(int opts, struct mtd_partition *parts, int n_parts);
37 #endif /* __OMAP_COMMON_BOARD_DEVICES__ */