Commit f00e9b11 authored by Olof Johansson's avatar Olof Johansson

Merge branch 'fixes' of git://github.com/hzhuang1/linux into fixes

* 'fixes' of git://github.com/hzhuang1/linux:
  ARM: pxa: fix build issue on stargate2
  ARM: pxa: fix build issue on cm-x300
  ARM: pxa: fix build failure for regulator consumer in em-x270.c
  ARM: pxa: fix regulator related build fail in magician_defconfig
parents a92e7023 5616131d
...@@ -714,7 +714,6 @@ struct da9030_battery_info cm_x300_battery_info = { ...@@ -714,7 +714,6 @@ struct da9030_battery_info cm_x300_battery_info = {
static struct regulator_consumer_supply buck2_consumers[] = { static struct regulator_consumer_supply buck2_consumers[] = {
{ {
.dev = NULL,
.supply = "vcc_core", .supply = "vcc_core",
}, },
}; };
......
...@@ -1083,19 +1083,19 @@ static void __init em_x270_userspace_consumers_init(void) ...@@ -1083,19 +1083,19 @@ static void __init em_x270_userspace_consumers_init(void)
} }
/* DA9030 related initializations */ /* DA9030 related initializations */
#define REGULATOR_CONSUMER(_name, _dev, _supply) \ #define REGULATOR_CONSUMER(_name, _dev_name, _supply) \
static struct regulator_consumer_supply _name##_consumers[] = { \ static struct regulator_consumer_supply _name##_consumers[] = { \
{ \ { \
.dev = _dev, \ .dev_name = _dev_name, \
.supply = _supply, \ .supply = _supply, \
}, \ }, \
} }
REGULATOR_CONSUMER(ldo3, &em_x270_gps_userspace_consumer.dev, "vcc gps"); REGULATOR_CONSUMER(ldo3, "reg-userspace-consumer.0", "vcc gps");
REGULATOR_CONSUMER(ldo5, NULL, "vcc cam"); REGULATOR_CONSUMER(ldo5, NULL, "vcc cam");
REGULATOR_CONSUMER(ldo10, &pxa_device_mci.dev, "vcc sdio"); REGULATOR_CONSUMER(ldo10, "pxa2xx-mci", "vcc sdio");
REGULATOR_CONSUMER(ldo12, NULL, "vcc usb"); REGULATOR_CONSUMER(ldo12, NULL, "vcc usb");
REGULATOR_CONSUMER(ldo19, &em_x270_gprs_userspace_consumer.dev, "vcc gprs"); REGULATOR_CONSUMER(ldo19, "reg-userspace-consumer.1", "vcc gprs");
REGULATOR_CONSUMER(buck2, NULL, "vcc_core"); REGULATOR_CONSUMER(buck2, NULL, "vcc_core");
#define REGULATOR_INIT(_ldo, _min_uV, _max_uV, _ops_mask) \ #define REGULATOR_INIT(_ldo, _min_uV, _max_uV, _ops_mask) \
......
...@@ -681,11 +681,9 @@ static struct platform_device power_supply = { ...@@ -681,11 +681,9 @@ static struct platform_device power_supply = {
static struct regulator_consumer_supply bq24022_consumers[] = { static struct regulator_consumer_supply bq24022_consumers[] = {
{ {
.dev = &gpio_vbus.dev,
.supply = "vbus_draw", .supply = "vbus_draw",
}, },
{ {
.dev = &power_supply.dev,
.supply = "ac_draw", .supply = "ac_draw",
}, },
}; };
......
...@@ -580,11 +580,9 @@ static struct platform_device power_supply = { ...@@ -580,11 +580,9 @@ static struct platform_device power_supply = {
static struct regulator_consumer_supply bq24022_consumers[] = { static struct regulator_consumer_supply bq24022_consumers[] = {
{ {
.dev = &gpio_vbus.dev,
.supply = "vbus_draw", .supply = "vbus_draw",
}, },
{ {
.dev = &power_supply.dev,
.supply = "ac_draw", .supply = "ac_draw",
}, },
}; };
......
...@@ -152,7 +152,7 @@ static struct platform_device sht15 = { ...@@ -152,7 +152,7 @@ static struct platform_device sht15 = {
static struct regulator_consumer_supply stargate2_sensor_3_con[] = { static struct regulator_consumer_supply stargate2_sensor_3_con[] = {
{ {
.dev = &sht15.dev, .dev_name = "sht15",
.supply = "vcc", .supply = "vcc",
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment