micro-support-card.h 589 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2012-2014 Panasonic Corporation
  4. * Copyright (C) 2015-2016 Socionext Inc.
  5. * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
  6. */
  7. #ifndef MICRO_SUPPORT_CARD_H
  8. #define MICRO_SUPPORT_CARD_H
  9. #if defined(CONFIG_MICRO_SUPPORT_CARD)
  10. void support_card_init(void);
  11. void support_card_late_init(void);
  12. void led_puts(const char *s);
  13. #else
  14. static inline void support_card_init(void)
  15. {
  16. }
  17. static inline void support_card_late_init(void)
  18. {
  19. }
  20. static inline void led_puts(const char *s)
  21. {
  22. }
  23. #endif
  24. #endif /* MICRO_SUPPORT_CARD_H */