diff options
-rw-r--r-- | arch/sparc64/kernel/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/kernel/time.c b/arch/sparc64/kernel/time.c index 75cb6b4dc14f..e3132b467681 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 | |||
783 | /* On an Enterprise system there can be multiple mostek clocks. | 783 | /* On an Enterprise system there can be multiple mostek clocks. |
784 | * We should only match the one that is on the central FHC bus. | 784 | * We should only match the one that is on the central FHC bus. |
785 | */ | 785 | */ |
786 | if (!strcmp(dp->parent, "fhc") && | 786 | if (!strcmp(dp->parent->name, "fhc") && |
787 | strcmp(dp->parent->parent, "central") != 0) | 787 | strcmp(dp->parent->parent->name, "central") != 0) |
788 | return -ENODEV; | 788 | return -ENODEV; |
789 | 789 | ||
790 | size = (op->resource[0].end - op->resource[0].start) + 1; | 790 | size = (op->resource[0].end - op->resource[0].start) + 1; |