Skip to content

Commit

Permalink
ARM: imx/mx31moboard: use mc13xxx structs instead of removed mc13783 …
Browse files Browse the repository at this point in the history
…structs

This is needed with patch

	mfd: Remove mc13783 API functions and symbols

(currently cde41c030 in next)

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Uwe Kleine-König authored and Samuel Ortiz committed Oct 24, 2011
1 parent bb3149a commit d3efa4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-imx/mach-mx31moboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static struct mc13xxx_regulator_init_data moboard_regulators[] = {
},
};

static struct mc13783_led_platform_data moboard_led[] = {
static struct mc13xxx_led_platform_data moboard_led[] = {
{
.id = MC13783_LED_R1,
.name = "coreboard-led-4:red",
Expand Down Expand Up @@ -256,7 +256,7 @@ static struct mc13783_led_platform_data moboard_led[] = {
},
};

static struct mc13783_leds_platform_data moboard_leds = {
static struct mc13xxx_leds_platform_data moboard_leds = {
.num_leds = ARRAY_SIZE(moboard_led),
.led = moboard_led,
.flags = MC13783_LED_SLEWLIMTC,
Expand All @@ -265,7 +265,7 @@ static struct mc13783_leds_platform_data moboard_leds = {
.tc2_period = MC13783_LED_PERIOD_10MS,
};

static struct mc13783_buttons_platform_data moboard_buttons = {
static struct mc13xxx_buttons_platform_data moboard_buttons = {
.b1on_flags = MC13783_BUTTON_DBNC_750MS | MC13783_BUTTON_ENABLE |
MC13783_BUTTON_POL_INVERT,
.b1on_key = KEY_POWER,
Expand Down

0 comments on commit d3efa4e

Please sign in to comment.