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
@ -18,6 +18,19 @@
|
|||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
#include <dm.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 <power/pmic.h>
|
||||||
#include <mmc.h>
|
#include <mmc.h>
|
||||||
|
|
||||||
|
@ -176,7 +176,6 @@ int universal_spi_read(void);
|
|||||||
|
|
||||||
/* Download menu - definitions for check keys */
|
/* Download menu - definitions for check keys */
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#include <power/max8998_pmic.h>
|
|
||||||
|
|
||||||
#define KEY_PWR_PMIC_NAME "MAX8998_PMIC"
|
#define KEY_PWR_PMIC_NAME "MAX8998_PMIC"
|
||||||
#define KEY_PWR_STATUS_REG MAX8998_REG_STATUS1
|
#define KEY_PWR_STATUS_REG MAX8998_REG_STATUS1
|
||||||
|
@ -188,7 +188,6 @@
|
|||||||
|
|
||||||
/* Download menu - definitions for check keys */
|
/* Download menu - definitions for check keys */
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#include <power/max8997_pmic.h>
|
|
||||||
|
|
||||||
#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
|
#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
|
||||||
#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
|
#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
|
||||||
|
@ -169,7 +169,6 @@
|
|||||||
|
|
||||||
/* Download menu - definitions for check keys */
|
/* Download menu - definitions for check keys */
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#include <power/max77686_pmic.h>
|
|
||||||
|
|
||||||
#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
|
#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
|
||||||
#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
|
#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
|
||||||
|
Loading…
Reference in New Issue
Block a user