diff options
Diffstat (limited to 'arch/powerpc/sysdev/fsl_msi.c')
| -rw-r--r-- | arch/powerpc/sysdev/fsl_msi.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c index 6e097de00e0..51ffafae561 100644 --- a/arch/powerpc/sysdev/fsl_msi.c +++ b/arch/powerpc/sysdev/fsl_msi.c @@ -368,7 +368,7 @@ static int __devinit fsl_of_msi_probe(struct platform_device *dev)  	int err, i, j, irq_index, count;  	int rc;  	const u32 *p; -	struct fsl_msi_feature *features; +	const struct fsl_msi_feature *features;  	int len;  	u32 offset;  	static const u32 all_avail[] = { 0, NR_MSI_IRQS }; @@ -502,15 +502,15 @@ static const struct fsl_msi_feature vmpic_msi_feature = {  static const struct of_device_id fsl_of_msi_ids[] = {  	{  		.compatible = "fsl,mpic-msi", -		.data = (void *)&mpic_msi_feature, +		.data = &mpic_msi_feature,  	},  	{  		.compatible = "fsl,ipic-msi", -		.data = (void *)&ipic_msi_feature, +		.data = &ipic_msi_feature,  	},  	{  		.compatible = "fsl,vmpic-msi", -		.data = (void *)&vmpic_msi_feature, +		.data = &vmpic_msi_feature,  	},  	{}  };  |