mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 19:31:53 +00:00
732805a563
The ab8500 MFD should not have knowledge about regulator- specific platform data like number of regulators and regulator registers. As the regulator platform data is about to grow with external regulators, this information is moved to a new structure provided by the regulator driver. Signed-off-by: Bengt Jonsson <bengt.g.jonsson@stericsson.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Reviewed-by: Yvan FILLION <yvan.fillion@stericsson.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
22 lines
570 B
C
22 lines
570 B
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* License Terms: GNU General Public License v2
|
|
*
|
|
* Author: Bengt Jonsson <bengt.g.jonsson@stericsson.com> for ST-Ericsson
|
|
*
|
|
* MOP500 board specific initialization for regulators
|
|
*/
|
|
|
|
#ifndef __BOARD_MOP500_REGULATORS_H
|
|
#define __BOARD_MOP500_REGULATORS_H
|
|
|
|
#include <linux/regulator/machine.h>
|
|
#include <linux/regulator/ab8500.h>
|
|
|
|
extern struct ab8500_regulator_platform_data ab8500_regulator_plat_data;
|
|
extern struct regulator_init_data tps61052_regulator;
|
|
extern struct regulator_init_data gpio_en_3v3_regulator;
|
|
|
|
#endif
|