mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
14 lines
234 B
C
14 lines
234 B
C
|
/*
|
||
|
* Copyright (C) 2015 Panasonic Corporation
|
||
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <asm/arch/board.h>
|
||
|
|
||
|
int misc_init_f(void)
|
||
|
{
|
||
|
return check_support_card();
|
||
|
}
|