This source file includes following definitions.
- at91_suspend_entering_slow_clock
   1 
   2 
   3 
   4 
   5 
   6 #ifndef __ATMEL_H__
   7 #define __ATMEL_H__
   8 
   9  
  10 struct at91_cf_data {
  11         int     irq_pin;                
  12         int     det_pin;                
  13         int     vcc_pin;                
  14         int     rst_pin;                
  15         u8      chipselect;             
  16         u8      flags;
  17 #define AT91_CF_TRUE_IDE        0x01
  18 #define AT91_IDE_SWAP_A0_A2     0x02
  19 };
  20 
  21 
  22 #ifdef CONFIG_ATMEL_PM
  23 extern int at91_suspend_entering_slow_clock(void);
  24 #else
  25 static inline int at91_suspend_entering_slow_clock(void)
  26 {
  27         return 0;
  28 }
  29 #endif
  30 
  31 #endif