mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
16 lines
362 B
C
16 lines
362 B
C
|
/* SPDX-License-Identifier: GPL-2.0+
|
||
|
*
|
||
|
* Copyright (C) Guangzhou FriendlyARM Computer Tech. Co., Ltd.
|
||
|
* (http://www.friendlyarm.com)
|
||
|
*/
|
||
|
|
||
|
#ifndef __BD_HW_REV_H__
|
||
|
#define __BD_HW_REV_H__
|
||
|
|
||
|
extern void bd_hwrev_init(void);
|
||
|
extern void bd_base_rev_init(void);
|
||
|
extern u32 get_board_rev(void);
|
||
|
extern const char *get_board_name(void);
|
||
|
|
||
|
#endif /* __BD_HW_REV_H__ */
|