Commit a718d139 authored by Pavel Tatashin's avatar Pavel Tatashin Committed by David S. Miller

sparc64: fix typo in property

There is a typo in a comment that propagated into code:
upa-portis instead of upa-portid

This problem was detected by code inspection.

Fixes: eea98334 ("sparc64: broken %tick frequency on spitfire cpus"
Signed-off-by: default avatarPavel Tatashin <pasha.tatashin@oracle.com>
Reported-by: default avatarSteven Sistare <steven.sistare@oracle.com>
Reviewed-by: default avatarSteven Sistare <steven.sistare@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 01bf693c
...@@ -381,7 +381,7 @@ bool arch_find_n_match_cpu_physical_id(struct device_node *cpun, ...@@ -381,7 +381,7 @@ bool arch_find_n_match_cpu_physical_id(struct device_node *cpun,
int this_cpu_id; int this_cpu_id;
/* On hypervisor based platforms we interrogate the 'reg' /* On hypervisor based platforms we interrogate the 'reg'
* property. On everything else we look for a 'upa-portis', * property. On everything else we look for a 'upa-portid',
* 'portid', or 'cpuid' property. * 'portid', or 'cpuid' property.
*/ */
......
...@@ -175,8 +175,8 @@ static unsigned long cpuid_to_freq(phandle node, int cpuid) ...@@ -175,8 +175,8 @@ static unsigned long cpuid_to_freq(phandle node, int cpuid)
if (prom_getproperty(node, "device_type", type, sizeof(type)) != -1) if (prom_getproperty(node, "device_type", type, sizeof(type)) != -1)
is_cpu_node = (strcmp(type, "cpu") == 0); is_cpu_node = (strcmp(type, "cpu") == 0);
/* try upa-portis then cpuid to get cpuid, see prom_64.c */ /* try upa-portid then cpuid to get cpuid, see prom_64.c */
if (is_cpu_node && (prom_getint(node, "upa-portis") == cpuid || if (is_cpu_node && (prom_getint(node, "upa-portid") == cpuid ||
prom_getint(node, "cpuid") == cpuid)) prom_getint(node, "cpuid") == cpuid))
freq = prom_getintdefault(node, "clock-frequency", 0); freq = prom_getintdefault(node, "clock-frequency", 0);
if (!freq) if (!freq)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment