mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	We can use checkboard() stub to show additional board information, so misc_init_f() should not be used for this purpose. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			669 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			669 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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+
 | |
|  */
 | |
| 
 | |
| #ifndef MICRO_SUPPORT_CARD_H
 | |
| #define MICRO_SUPPORT_CARD_H
 | |
| 
 | |
| #if defined(CONFIG_MICRO_SUPPORT_CARD)
 | |
| void support_card_reset(void);
 | |
| void support_card_init(void);
 | |
| void support_card_late_init(void);
 | |
| void led_puts(const char *s);
 | |
| #else
 | |
| static inline void support_card_reset(void)
 | |
| {
 | |
| }
 | |
| 
 | |
| 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 */
 |