palmasoc.h 308 B

12345678910111213
  1. #ifndef _INCLUDE_PALMASOC_H_
  2. #define _INCLUDE_PALMASOC_H_
  3. struct palm27x_asoc_info {
  4. int jack_gpio;
  5. };
  6. #ifdef CONFIG_SND_PXA2XX_SOC_PALM27X
  7. void __init palm27x_asoc_set_pdata(struct palm27x_asoc_info *data);
  8. #else
  9. static inline void palm27x_asoc_set_pdata(struct palm27x_asoc_info *data) {}
  10. #endif
  11. #endif