From: Stephen Rothwell Date: Thu, 29 Mar 2007 07:50:57 +0000 (-0700) Subject: [SPARC/64] constify of_get_property return: sound X-Git-Tag: v2.6.22-rc1~1127^2~56 X-Git-Url: http://git.rot13.org/?p=powerpc.git;a=commitdiff_plain;h=3198514d2d10fb3ce5e49ba0c611764ad8a214d0 [SPARC/64] constify of_get_property return: sound Signed-off-by: Stephen Rothwell Signed-off-by: David S. Miller --- diff --git a/sound/sparc/amd7930.c b/sound/sparc/amd7930.c index c899786f30..07962a35f2 100644 --- a/sound/sparc/amd7930.c +++ b/sound/sparc/amd7930.c @@ -1067,8 +1067,8 @@ out_err: static int __devinit amd7930_obio_attach(struct device_node *dp) { - struct linux_prom_registers *regs; - struct linux_prom_irqs *irqp; + const struct linux_prom_registers *regs; + const struct linux_prom_irqs *irqp; struct resource res, *rp; int len; diff --git a/sound/sparc/cs4231.c b/sound/sparc/cs4231.c index f5956d557f..900a00de35 100644 --- a/sound/sparc/cs4231.c +++ b/sound/sparc/cs4231.c @@ -2284,7 +2284,7 @@ static int __init cs4231_init(void) if (!strcmp(edev->prom_node->name, "SUNW,CS4231")) { match = 1; } else if (!strcmp(edev->prom_node->name, "audio")) { - char *compat; + const char *compat; compat = of_get_property(edev->prom_node, "compatible", NULL);