|
@@ -1,17 +1,18 @@
|
|
/*
|
|
/*
|
|
- * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
|
|
+ * Copyright (C) 2012-2014 Panasonic Corporation
|
|
|
|
+ * Copyright (C) 2015-2016 Socionext Inc.
|
|
|
|
+ * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
*/
|
|
|
|
|
|
-#ifndef ARCH_BOARD_H
|
|
|
|
-#define ARCH_BOARD_H
|
|
|
|
|
|
+#ifndef MICRO_SUPPORT_CARD_H
|
|
|
|
+#define MICRO_SUPPORT_CARD_H
|
|
|
|
|
|
#if defined(CONFIG_MICRO_SUPPORT_CARD)
|
|
#if defined(CONFIG_MICRO_SUPPORT_CARD)
|
|
void support_card_reset(void);
|
|
void support_card_reset(void);
|
|
void support_card_init(void);
|
|
void support_card_init(void);
|
|
void support_card_late_init(void);
|
|
void support_card_late_init(void);
|
|
-int check_support_card(void);
|
|
|
|
void led_puts(const char *s);
|
|
void led_puts(const char *s);
|
|
#else
|
|
#else
|
|
static inline void support_card_reset(void)
|
|
static inline void support_card_reset(void)
|
|
@@ -26,14 +27,9 @@ static inline void support_card_late_init(void)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
-static inline int check_support_card(void)
|
|
|
|
-{
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static inline void led_puts(const char *s)
|
|
static inline void led_puts(const char *s)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
-#endif /* ARCH_BOARD_H */
|
|
|
|
|
|
+#endif /* MICRO_SUPPORT_CARD_H */
|