blob: 90990ba4044e1cdd6c137e41ab7310b20bcb3973 [file] [log] [blame]
Masahiro Yamada5894ca02014-10-03 19:21:06 +09001/*
Masahiro Yamada43a8cc92016-09-14 01:06:07 +09002 * Copyright (C) 2012-2014 Panasonic Corporation
3 * Copyright (C) 2015-2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada5894ca02014-10-03 19:21:06 +09005 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Masahiro Yamada43a8cc92016-09-14 01:06:07 +09009#ifndef MICRO_SUPPORT_CARD_H
10#define MICRO_SUPPORT_CARD_H
Masahiro Yamada5894ca02014-10-03 19:21:06 +090011
Masahiro Yamada98798422015-09-11 20:17:45 +090012#if defined(CONFIG_MICRO_SUPPORT_CARD)
Masahiro Yamada5894ca02014-10-03 19:21:06 +090013void support_card_init(void);
Masahiro Yamada7a3620b2014-12-06 00:03:26 +090014void support_card_late_init(void);
Masahiro Yamada84697002015-09-22 00:27:31 +090015void led_puts(const char *s);
Masahiro Yamada5894ca02014-10-03 19:21:06 +090016#else
Masahiro Yamada0b198672015-09-22 00:27:30 +090017static inline void support_card_init(void)
18{
19}
20
21static inline void support_card_late_init(void)
22{
23}
24
Masahiro Yamada84697002015-09-22 00:27:31 +090025static inline void led_puts(const char *s)
26{
27}
Masahiro Yamada5894ca02014-10-03 19:21:06 +090028#endif
29
Masahiro Yamada43a8cc92016-09-14 01:06:07 +090030#endif /* MICRO_SUPPORT_CARD_H */