public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
* linux-next: manual merge of the mfd tree with the i.MX tree
@ 2011-03-01  3:54 Stephen Rothwell
  2011-03-01  8:35 ` David Jander
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2011-03-01  3:54 UTC (permalink / raw)
  To: Samuel Ortiz
  Cc: linux-next, linux-kernel, Andres Salomon, David Jander,
	Sascha Hauer, "Uwe Kleine-König"

Hi Samuel,

Today's linux-next merge of the mfd tree got a conflict in
arch/arm/mach-imx/mach-mx27_3ds.c arch/arm/mach-imx/mach-pcm038.c
arch/arm/mach-mx3/mach-mx31_3ds.c arch/arm/mach-mx3/mach-mx31moboard.c
between commit 5836372e8a0ba5cc633f61bc0484ee20c86f4b36 ("ARM: imx+mx3:
convert to mc13xxx MFD") from the i.MX tree and commit
e84e545d47d26644275a79fe5ebc1797bcb80910 ("mfd: mfd_cell is now
implicitly available to mc13xxx drivers") from the mfd tree.

I fixed it up (I think - see below) and can carry the fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@canb•auug.org.au

diff --cc arch/arm/mach-imx/mach-mx27_3ds.c
index ba88417,4bf1962..0000000
--- a/arch/arm/mach-imx/mach-mx27_3ds.c
+++ b/arch/arm/mach-imx/mach-mx27_3ds.c
@@@ -231,10 -227,13 +231,13 @@@ static struct mc13xxx_regulator_init_da
  };
  
  /* MC13783 */
 -static struct mc13783_platform_data mc13783_pdata = {
 +static struct mc13xxx_platform_data mc13783_pdata __initdata = {
- 	.regulators = mx27_3ds_regulators,
- 	.num_regulators = ARRAY_SIZE(mx27_3ds_regulators),
+ 	.regulators = {
+ 		.regulators = mx27_3ds_regulators,
+ 		.num_regulators = ARRAY_SIZE(mx27_3ds_regulators),
+ 
+ 	},
 -	.flags  = MC13783_USE_REGULATOR,
 +	.flags  = MC13XXX_USE_REGULATOR,
  };
  
  /* SPI */
diff --cc arch/arm/mach-imx/mach-pcm038.c
index 38c7708,c4c8fb1..0000000
--- a/arch/arm/mach-imx/mach-pcm038.c
+++ b/arch/arm/mach-imx/mach-pcm038.c
@@@ -262,11 -262,13 +262,13 @@@ static struct mc13xxx_regulator_init_da
  	},
  };
  
 -static struct mc13783_platform_data pcm038_pmic = {
 +static struct mc13xxx_platform_data pcm038_pmic = {
- 	.regulators = pcm038_regulators,
- 	.num_regulators = ARRAY_SIZE(pcm038_regulators),
+ 	.regulators = {
+ 		.regulators = pcm038_regulators,
+ 		.num_regulators = ARRAY_SIZE(pcm038_regulators),
+ 	},
 -	.flags = MC13783_USE_ADC | MC13783_USE_REGULATOR |
 -		 MC13783_USE_TOUCHSCREEN,
 +	.flags = MC13XXX_USE_ADC | MC13XXX_USE_REGULATOR |
 +		 MC13XXX_USE_TOUCHSCREEN,
  };
  
  static struct spi_board_info pcm038_spi_board_info[] __initdata = {
diff --cc arch/arm/mach-mx3/mach-mx31_3ds.c
index b7d0953,88516af..0000000
--- a/arch/arm/mach-mx3/mach-mx31_3ds.c
+++ b/arch/arm/mach-mx3/mach-mx31_3ds.c
@@@ -152,10 -156,12 +152,13 @@@ static struct mc13xxx_regulator_init_da
  };
  
  /* MC13783 */
 +static struct mc13xxx_platform_data mc13783_pdata __initdata = {
- 	.regulators = mx31_3ds_regulators,
- 	.num_regulators = ARRAY_SIZE(mx31_3ds_regulators),
- 	.flags  = MC13XXX_USE_REGULATOR | MC13XXX_USE_TOUCHSCREEN
+ static struct mc13783_platform_data mc13783_pdata = {
+ 	.regulators = {
+ 		.regulators = mx31_3ds_regulators,
+ 		.num_regulators = ARRAY_SIZE(mx31_3ds_regulators),
+ 	},
 -	.flags  = MC13783_USE_REGULATOR | MC13783_USE_TOUCHSCREEN,
++	.flags  = MC13XXX_USE_REGULATOR | MC13XXX_USE_TOUCHSCREEN,
  };
  
  /* SPI */
diff --cc arch/arm/mach-mx3/mach-mx31moboard.c
index 845d0b6,3a9c589..0000000
--- a/arch/arm/mach-mx3/mach-mx31moboard.c
+++ b/arch/arm/mach-mx3/mach-mx31moboard.c
@@@ -267,12 -267,14 +267,14 @@@ static struct mc13783_leds_platform_dat
  	.tc2_period = MC13783_LED_PERIOD_10MS,
  };
  
 -static struct mc13783_platform_data moboard_pmic = {
 +static struct mc13xxx_platform_data moboard_pmic = {
- 	.regulators = moboard_regulators,
- 	.num_regulators = ARRAY_SIZE(moboard_regulators),
+ 	.regulators = {
+ 		.regulators = moboard_regulators,
+ 		.num_regulators = ARRAY_SIZE(moboard_regulators),
+ 	},
  	.leds = &moboard_leds,
 -	.flags = MC13783_USE_REGULATOR | MC13783_USE_RTC |
 -		MC13783_USE_ADC | MC13783_USE_LED,
 +	.flags = MC13XXX_USE_REGULATOR | MC13XXX_USE_RTC |
 +		MC13XXX_USE_ADC | MC13XXX_USE_LED,
  };
  
  static struct spi_board_info moboard_spi_board_info[] __initdata = {

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-03-02 17:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-01  3:54 linux-next: manual merge of the mfd tree with the i.MX tree Stephen Rothwell
2011-03-01  8:35 ` David Jander
2011-03-01 19:39   ` Andres Salomon
2011-03-02  6:43     ` david
2011-03-02  7:31   ` Stephen Rothwell
2011-03-02 17:56     ` david

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox