summaryrefslogtreecommitdiff
path: root/arch/arm/mach-uniphier/micro-support-card.h
blob: a5a94f8ed9363660598ae79f9104d49388e395cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * Copyright (C) 2012-2014 Panasonic Corporation
 * Copyright (C) 2015-2016 Socionext Inc.
 *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
 */

#ifndef MICRO_SUPPORT_CARD_H
#define MICRO_SUPPORT_CARD_H

#if defined(CONFIG_MICRO_SUPPORT_CARD)
void support_card_init(void);
void support_card_late_init(void);
void led_puts(const char *s);
#else
static inline void support_card_init(void)
{
}

static inline void support_card_late_init(void)
{
}

static inline void led_puts(const char *s)
{
}
#endif

#endif /* MICRO_SUPPORT_CARD_H */