regulator, mc13xxx: Remove pointless test for unsigned less than zero
[zen-stable.git] / arch / arm / mach-pxa / include / mach / irda.h
blob3cd41f77dda44128a5afd052c563d6a8cea5edc2
1 #ifndef ASMARM_ARCH_IRDA_H
2 #define ASMARM_ARCH_IRDA_H
4 /* board specific transceiver capabilities */
6 #define IR_OFF 1
7 #define IR_SIRMODE 2
8 #define IR_FIRMODE 4
10 struct pxaficp_platform_data {
11 int transceiver_cap;
12 void (*transceiver_mode)(struct device *dev, int mode);
13 int (*startup)(struct device *dev);
14 void (*shutdown)(struct device *dev);
15 int gpio_pwdown; /* powerdown GPIO for the IrDA chip */
16 bool gpio_pwdown_inverted; /* gpio_pwdown is inverted */
19 extern void pxa_set_ficp_info(struct pxaficp_platform_data *info);
21 #if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
22 void pxa2xx_transceiver_mode(struct device *dev, int mode);
23 #endif
25 #endif