aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2006-06-29 14:43:37 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-06-29 16:37:35 -0700
commitc3a8b85f5ac2c21f4ef75e87bfe55ee7a753ffcf (patch)
treec12123873c1f1f7f0e9413fe89720914be67158f /arch
parent915214853d7681416d6bdd1591787cdbded459e7 (diff)
downloadlinux-c3a8b85f5ac2c21f4ef75e87bfe55ee7a753ffcf.tar.gz
[SPARC64]: Fix typo in clock_probe().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r--arch/sparc64/kernel/time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/kernel/time.c b/arch/sparc64/kernel/time.c
index 75cb6b4dc14ff1..e3132b467681cd 100644
--- a/arch/sparc64/kernel/time.c
+++ b/arch/sparc64/kernel/time.c
@@ -783,8 +783,8 @@ static int __devinit clock_probe(struct of_device *op, const struct of_device_id
/* On an Enterprise system there can be multiple mostek clocks.
* We should only match the one that is on the central FHC bus.
*/
- if (!strcmp(dp->parent, "fhc") &&
- strcmp(dp->parent->parent, "central") != 0)
+ if (!strcmp(dp->parent->name, "fhc") &&
+ strcmp(dp->parent->parent->name, "central") != 0)
return -ENODEV;
size = (op->resource[0].end - op->resource[0].start) + 1;