mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-12 02:06:59 +02:00
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>
13 lines
221 B
C
13 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
|