mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
4f9c7a9f54
- None of the callers perform error checking and based on the non-empty versions of this function, there's no checking to be done, so make this a void. - Add a default weak version of the function. - Remove the empty versions of exynos_init now that we have a weak version. Signed-off-by: Tom Rini <trini@konsulko.com>
28 lines
490 B
C
28 lines
490 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2013 Samsung Electronics
|
|
* Rajeshwari Shinde <rajeshwari.s@samsung.com>
|
|
*/
|
|
|
|
#ifndef _EXYNOS_BOARD_H
|
|
#define _EXYNOS_BOARD_H
|
|
|
|
/*
|
|
* Exynos baord specific changes for
|
|
* board_init
|
|
*/
|
|
void exynos_init(void);
|
|
|
|
/*
|
|
* Exynos board specific changes for
|
|
* board_early_init_f
|
|
*/
|
|
int exynos_early_init_f(void);
|
|
|
|
/*
|
|
* Exynos board specific changes for
|
|
* board_power_init
|
|
*/
|
|
int exynos_power_init(void);
|
|
|
|
#endif /* EXYNOS_BOARD_H */
|