ab5500-debugfs.h 408 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2011 ST-Ericsson
  3. * License terms: GNU General Public License (GPL) version 2
  4. * Debugfs interface to the AB5500 core driver
  5. */
  6. #ifdef CONFIG_DEBUG_FS
  7. void ab5500_setup_debugfs(struct ab5500 *ab);
  8. void ab5500_remove_debugfs(void);
  9. #else /* !CONFIG_DEBUG_FS */
  10. static inline void ab5500_setup_debugfs(struct ab5500 *ab)
  11. {
  12. }
  13. static inline void ab5500_remove_debugfs(void)
  14. {
  15. }
  16. #endif