summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/kernel/of_device.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-03-29 10:50:16 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 10:55:37 +0200
commita165b4205e0097c7544ec3c59522a3b20ec14eb1 (patch)
tree6c4608555770b122c511d740f0180b796f75bf9b /arch/sparc64/kernel/of_device.c
parent[SPARC64]: Document and fix calculation of pages_avail. (diff)
downloadlinux-a165b4205e0097c7544ec3c59522a3b20ec14eb1.tar.xz
linux-a165b4205e0097c7544ec3c59522a3b20ec14eb1.zip
[SPARC64]: Fix PCI rework to adhere to of_get_property() const return.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/of_device.c')
-rw-r--r--arch/sparc64/kernel/of_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/kernel/of_device.c b/arch/sparc64/kernel/of_device.c
index f18eec6ad691..9ac9a307999a 100644
--- a/arch/sparc64/kernel/of_device.c
+++ b/arch/sparc64/kernel/of_device.c
@@ -317,7 +317,7 @@ static unsigned int of_bus_default_get_flags(const u32 *addr)
static int of_bus_pci_match(struct device_node *np)
{
if (!strcmp(np->type, "pci") || !strcmp(np->type, "pciex")) {
- char *model = of_get_property(np, "model", NULL);
+ const char *model = of_get_property(np, "model", NULL);
if (model && !strcmp(model, "SUNW,simba"))
return 0;
@@ -339,7 +339,7 @@ static int of_bus_pci_match(struct device_node *np)
static int of_bus_simba_match(struct device_node *np)
{
- char *model = of_get_property(np, "model", NULL);
+ const char *model = of_get_property(np, "model", NULL);
if (model && !strcmp(model, "SUNW,simba"))
return 1;