mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
71ebb33559
Create a common board.c file for all functions which are common across all EXYNOS5 platforms. exynos_init function is provided for platform specific code. Signed-off-by: Rajeshwari S Shinde <rajeshwari.s@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
17 lines
297 B
C
17 lines
297 B
C
/*
|
|
* (C) Copyright 2013 Samsung Electronics
|
|
* Rajeshwari Shinde <rajeshwari.s@samsung.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _EXYNOS_BOARD_H
|
|
#define _EXYNOS_BOARD_H
|
|
|
|
/*
|
|
* Exynos baord specific changes for
|
|
* board_init
|
|
*/
|
|
int exynos_init(void);
|
|
|
|
#endif /* EXYNOS_BOARD_H */
|