mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
29655631ae
PD#SWPL-112358 Problem: ad403 is missing pmic6b driver in kernel5.15. Solution: base Yu Tu 76117 and 78726; base Jian yi 189702 and 192916,216774; and yao jie 216898; Verify: A113L-AD401 #1 +Battery. all driver use ko; Change-Id: I911ca92dbe6f8c0f623e32fd14bdcf23a6318861 Signed-off-by: chengbing wu <chengbing.wu@amlogic.com>
25 lines
426 B
C
25 lines
426 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __MFD_MAIN_H__
|
|
#define __MFD_MAIN_H__
|
|
|
|
#if IS_ENABLED(CONFIG_AMLOGIC_MFD_PMIC6B)
|
|
int meson_pmic6b_i2c_init(void);
|
|
void meson_pmic6b_i2c_exit(void);
|
|
#else
|
|
static inline int meson_pmic6b_i2c_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void meson_pmic6b_i2c_exit(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MFD_MAIN_H__ */
|
|
|