mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
17 lines
293 B
C
17 lines
293 B
C
|
/*
|
||
|
* Copyright (C) 2012-2014 Panasonic Corporation
|
||
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/arch/board.h>
|
||
|
|
||
|
int checkboard(void)
|
||
|
{
|
||
|
puts("Board: PH1-sLD8 Board\n");
|
||
|
|
||
|
return check_support_card();
|
||
|
}
|