2010-12-10 10:08:48 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2013-03-21 15:59:03 +00:00
|
|
|
extern struct ab8500_regulator_platform_data ab8500_regulator_plat_data;
|
2013-03-28 16:11:14 +00:00
|
|
|
extern struct ab8500_regulator_platform_data ab8505_regulator_plat_data;
|
2011-03-07 10:48:15 +00:00
|
|
|
extern struct regulator_init_data tps61052_regulator;
|
2012-09-03 13:33:39 +00:00
|
|
|
extern struct regulator_init_data gpio_en_3v3_regulator;
|
2013-01-31 11:31:16 +00:00
|
|
|
extern struct regulator_init_data sdi0_reg_init_data;
|
2010-12-10 10:08:48 +00:00
|
|
|
|
2013-03-28 16:11:04 +00:00
|
|
|
void mop500_regulator_init(void);
|
|
|
|
|
2010-12-10 10:08:48 +00:00
|
|
|
#endif
|