diff options
Diffstat (limited to 'arch/powerpc/platforms/85xx')
| -rw-r--r-- | arch/powerpc/platforms/85xx/common.c | 6 | ||||
| -rw-r--r-- | arch/powerpc/platforms/85xx/mpc85xx_mds.c | 13 | ||||
| -rw-r--r-- | arch/powerpc/platforms/85xx/mpc85xx_rdb.c | 2 | ||||
| -rw-r--r-- | arch/powerpc/platforms/85xx/p1022_ds.c | 17 | 
4 files changed, 12 insertions, 26 deletions
diff --git a/arch/powerpc/platforms/85xx/common.c b/arch/powerpc/platforms/85xx/common.c index 9fef5302adc..67dac22b436 100644 --- a/arch/powerpc/platforms/85xx/common.c +++ b/arch/powerpc/platforms/85xx/common.c @@ -21,6 +21,12 @@ static struct of_device_id __initdata mpc85xx_common_ids[] = {  	{ .compatible = "fsl,qe", },  	{ .compatible = "fsl,cpm2", },  	{ .compatible = "fsl,srio", }, +	/* So that the DMA channel nodes can be probed individually: */ +	{ .compatible = "fsl,eloplus-dma", }, +	/* For the PMC driver */ +	{ .compatible = "fsl,mpc8548-guts", }, +	/* Probably unnecessary? */ +	{ .compatible = "gpio-leds", },  	{},  }; diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index 3754ddc00af..d208ebccb91 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c @@ -270,7 +270,7 @@ static void __init mpc85xx_mds_qe_init(void)  	if (machine_is(p1021_mds)) { -		struct ccsr_guts_85xx __iomem *guts; +		struct ccsr_guts __iomem *guts;  		np = of_find_node_by_name(NULL, "global-utilities");  		if (np) { @@ -399,12 +399,6 @@ static int __init board_fixups(void)  machine_arch_initcall(mpc8568_mds, board_fixups);  machine_arch_initcall(mpc8569_mds, board_fixups); -static struct of_device_id mpc85xx_ids[] = { -	{ .compatible = "fsl,mpc8548-guts", }, -	{ .compatible = "gpio-leds", }, -	{}, -}; -  static int __init mpc85xx_publish_devices(void)  {  	if (machine_is(mpc8568_mds)) @@ -412,10 +406,7 @@ static int __init mpc85xx_publish_devices(void)  	if (machine_is(mpc8569_mds))  		simple_gpiochip_init("fsl,mpc8569mds-bcsr-gpio"); -	mpc85xx_common_publish_devices(); -	of_platform_bus_probe(NULL, mpc85xx_ids, NULL); - -	return 0; +	return mpc85xx_common_publish_devices();  }  machine_device_initcall(mpc8568_mds, mpc85xx_publish_devices); diff --git a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c index 9848f9e3985..313fce4f557 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c @@ -127,7 +127,7 @@ static void __init mpc85xx_rdb_setup_arch(void)  #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)  	if (machine_is(p1025_rdb)) { -		struct ccsr_guts_85xx __iomem *guts; +		struct ccsr_guts __iomem *guts;  		np = of_find_node_by_name(NULL, "global-utilities");  		if (np) { diff --git a/arch/powerpc/platforms/85xx/p1022_ds.c b/arch/powerpc/platforms/85xx/p1022_ds.c index 0fe88e39945..f700c81a132 100644 --- a/arch/powerpc/platforms/85xx/p1022_ds.c +++ b/arch/powerpc/platforms/85xx/p1022_ds.c @@ -150,7 +150,7 @@ static void p1022ds_set_monitor_port(enum fsl_diu_monitor_port port)  {  	struct device_node *guts_node;  	struct device_node *indirect_node = NULL; -	struct ccsr_guts_85xx __iomem *guts; +	struct ccsr_guts __iomem *guts;  	u8 __iomem *lbc_lcs0_ba = NULL;  	u8 __iomem *lbc_lcs1_ba = NULL;  	u8 b; @@ -269,7 +269,7 @@ exit:  void p1022ds_set_pixel_clock(unsigned int pixclock)  {  	struct device_node *guts_np = NULL; -	struct ccsr_guts_85xx __iomem *guts; +	struct ccsr_guts __iomem *guts;  	unsigned long freq;  	u64 temp;  	u32 pxclk; @@ -460,18 +460,7 @@ static void __init p1022_ds_setup_arch(void)  	pr_info("Freescale P1022 DS reference board\n");  } -static struct of_device_id __initdata p1022_ds_ids[] = { -	/* So that the DMA channel nodes can be probed individually: */ -	{ .compatible = "fsl,eloplus-dma", }, -	{}, -}; - -static int __init p1022_ds_publish_devices(void) -{ -	mpc85xx_common_publish_devices(); -	return of_platform_bus_probe(NULL, p1022_ds_ids, NULL); -} -machine_device_initcall(p1022_ds, p1022_ds_publish_devices); +machine_device_initcall(p1022_ds, mpc85xx_common_publish_devices);  machine_arch_initcall(p1022_ds, swiotlb_setup_bus_notifier);  |