/* * atmel platform data * * GPL v2 Only */ #ifndef __ATMEL_H__ #define __ATMEL_H__ /* Compact Flash */ struct at91_cf_data { int irq_pin; /* I/O IRQ */ int det_pin; /* Card detect */ int vcc_pin; /* power switching */ int rst_pin; /* card reset */ u8 chipselect; /* EBI Chip Select number */ u8 flags; #define AT91_CF_TRUE_IDE 0x01 #define AT91_IDE_SWAP_A0_A2 0x02 }; /* FIXME: this needs a better location, but gets stuff building again */ #ifdef CONFIG_ATMEL_PM extern int at91_suspend_entering_slow_clock(void); #else
static inline int at91_suspend_entering_slow_clock(void) { return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jean-Christophe Plagniol-Villard | 52 | 70.27% | 2 | 50.00% |
Arnd Bergmann | 19 | 25.68% | 1 | 25.00% |
Paul Gortmaker | 3 | 4.05% | 1 | 25.00% |
Total | 74 | 100.00% | 4 | 100.00% |