mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
power: Tidy up inclusion of regulator_common.h
This file should not include common.h and dm.h so remove them. Also move the inclusion of this file to after the normal includes. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
@@ -5,7 +5,6 @@
|
|||||||
* Przemyslaw Marczak <p.marczak@samsung.com>
|
* Przemyslaw Marczak <p.marczak@samsung.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "regulator_common.h"
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
@@ -13,6 +12,8 @@
|
|||||||
#include <power/pmic.h>
|
#include <power/pmic.h>
|
||||||
#include <power/regulator.h>
|
#include <power/regulator.h>
|
||||||
|
|
||||||
|
#include "regulator_common.h"
|
||||||
|
|
||||||
static int fixed_regulator_ofdata_to_platdata(struct udevice *dev)
|
static int fixed_regulator_ofdata_to_platdata(struct udevice *dev)
|
||||||
{
|
{
|
||||||
struct dm_regulator_uclass_platdata *uc_pdata;
|
struct dm_regulator_uclass_platdata *uc_pdata;
|
||||||
|
@@ -4,7 +4,6 @@
|
|||||||
* Keerthy <j-keerthy@ti.com>
|
* Keerthy <j-keerthy@ti.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "regulator_common.h"
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@@ -15,6 +14,8 @@
|
|||||||
#include <power/pmic.h>
|
#include <power/pmic.h>
|
||||||
#include <power/regulator.h>
|
#include <power/regulator.h>
|
||||||
|
|
||||||
|
#include "regulator_common.h"
|
||||||
|
|
||||||
#define GPIO_REGULATOR_MAX_STATES 2
|
#define GPIO_REGULATOR_MAX_STATES 2
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
@@ -4,12 +4,14 @@
|
|||||||
* Sven Schwermer <sven.svenschwermer@disruptive-technologies.com>
|
* Sven Schwermer <sven.svenschwermer@disruptive-technologies.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "regulator_common.h"
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <log.h>
|
#include <log.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <power/regulator.h>
|
#include <power/regulator.h>
|
||||||
|
|
||||||
|
#include "regulator_common.h"
|
||||||
|
|
||||||
int regulator_common_ofdata_to_platdata(struct udevice *dev,
|
int regulator_common_ofdata_to_platdata(struct udevice *dev,
|
||||||
struct regulator_common_platdata *dev_pdata, const char *enable_gpio_name)
|
struct regulator_common_platdata *dev_pdata, const char *enable_gpio_name)
|
||||||
{
|
{
|
||||||
|
@@ -7,9 +7,7 @@
|
|||||||
#ifndef _REGULATOR_COMMON_H
|
#ifndef _REGULATOR_COMMON_H
|
||||||
#define _REGULATOR_COMMON_H
|
#define _REGULATOR_COMMON_H
|
||||||
|
|
||||||
#include <common.h>
|
|
||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
#include <dm.h>
|
|
||||||
|
|
||||||
struct regulator_common_platdata {
|
struct regulator_common_platdata {
|
||||||
struct gpio_desc gpio; /* GPIO for regulator enable control */
|
struct gpio_desc gpio; /* GPIO for regulator enable control */
|
||||||
|
Reference in New Issue
Block a user