diff options
| author | Arnd Bergmann <[email protected]> | 2012-07-13 16:24:26 +0000 |
|---|---|---|
| committer | Uwe Kleine-König <[email protected]> | 2012-09-11 06:57:28 +0000 |
| commit | a99cc82bd61baefd8bb3110e1284629be3610c0c (patch) | |
| tree | 212ac3b5eb655b2fd8fff6e8e44bd7426e3ec759 /arch/powerpc/sysdev/fsl_msi.c | |
| parent | gpio/gpio-omap: make platformdata used as *of_device_id.data const (diff) | |
| download | kernel-a99cc82bd61baefd8bb3110e1284629be3610c0c.tar.gz kernel-a99cc82bd61baefd8bb3110e1284629be3610c0c.zip | |
powerpc/fsl_msi: drop unneeded cast to non-const pointer
This cast is unneeded since *of_device_id.data became const.
[ukl: split Arnd's patch by driver and add changelog]
Signed-off-by: Arnd Bergmann <[email protected]>
Acked-by: Benjamin Herrenschmidt <[email protected]>
Signed-off-by: Uwe Kleine-König <[email protected]>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_msi.c')
| -rw-r--r-- | arch/powerpc/sysdev/fsl_msi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c index a40acd68444e..51ffafae561e 100644 --- a/arch/powerpc/sysdev/fsl_msi.c +++ b/arch/powerpc/sysdev/fsl_msi.c @@ -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, }, {} }; |
