mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 02:20:25 +00:00
5051ff5fb0
Since the Pfuze initializations are similar on various mx6 SABRE boards. Factorize the initialization to a common function in file board/freescale/common/pfuze.c. So that all SABRE boards BSP can share the function. Signed-off-by: Ye.Li <B37916@freescale.com>
12 lines
221 B
C
12 lines
221 B
C
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __PFUZE_BOARD_HELPER__
|
|
#define __PFUZE_BOARD_HELPER__
|
|
|
|
struct pmic *pfuze_common_init(unsigned char i2cbus);
|
|
|
|
#endif
|