This prepares *of_device_id.data becoming const. Without this change
the following warning would occur:

        arch/powerpc/platforms/83xx/suspend.c: In function 'pmc_probe':
        arch/powerpc/platforms/83xx/suspend.c:336:7: error: assignment discards 
'const' qualifier from pointer target type [-Werror]

Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.de>
---
 arch/powerpc/platforms/83xx/suspend.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/83xx/suspend.c 
b/arch/powerpc/platforms/83xx/suspend.c
index 1a04671..1d769a2 100644
--- a/arch/powerpc/platforms/83xx/suspend.c
+++ b/arch/powerpc/platforms/83xx/suspend.c
@@ -326,7 +326,7 @@ static int pmc_probe(struct platform_device *ofdev)
        const struct of_device_id *match;
        struct device_node *np = ofdev->dev.of_node;
        struct resource res;
-       struct pmc_type *type;
+       const struct pmc_type *type;
        int ret = 0;
 
        match = of_match_device(pmc_match, &ofdev->dev);
-- 
1.7.10.4

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to