mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
samsung: Move pmic header out of config file
We should not be including a PMIC header file in the board config. Move it to a C file. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
1704308eb6
commit
f6e76202d4
4 changed files with 13 additions and 3 deletions
|
@ -18,6 +18,19 @@
|
|||
#include <asm/gpio.h>
|
||||
#include <linux/input.h>
|
||||
#include <dm.h>
|
||||
/*
|
||||
* Use #ifdef to work around conflicting headers while we wait for this to be
|
||||
* converted to driver model.
|
||||
*/
|
||||
#ifdef CONFIG_DM_PMIC_MAX77686
|
||||
#include <power/max77686_pmic.h>
|
||||
#endif
|
||||
#ifdef CONFIG_DM_PMIC_MAX8998
|
||||
#include <power/max8998_pmic.h>
|
||||
#endif
|
||||
#ifdef CONFIG_PMIC_MAX8997
|
||||
#include <power/max8997_pmic.h>
|
||||
#endif
|
||||
#include <power/pmic.h>
|
||||
#include <mmc.h>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue