diff options
author | Scott Wood <scottwood@freescale.com> | 2007-08-29 16:08:40 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-10-03 21:35:43 -0400 |
commit | 6d817aa71fddea859ba02d1a0b326da930ce6b50 (patch) | |
tree | b06061acb38cf5592c7a6480b9cd64b76679913c /arch/powerpc/boot/cuboot-8xx.c | |
parent | 26f571d7c968dbd30656fc1421eeb0d9088aaad9 (diff) |
[POWERPC] CPM: Change from fsl,brg-frequency to brg/clock-frequency
As suggested by David Gibson, now that we have a separate node
for the baud rate generators, it's better to use the standard
clock-frequency property than a cpm-node-level fsl,brg-frequency
property.
This patch updates existing places where fsl,brg-frequency is
used.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/boot/cuboot-8xx.c')
-rw-r--r-- | arch/powerpc/boot/cuboot-8xx.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/boot/cuboot-8xx.c b/arch/powerpc/boot/cuboot-8xx.c index 88ed84015a8b..0e82015a5f95 100644 --- a/arch/powerpc/boot/cuboot-8xx.c +++ b/arch/powerpc/boot/cuboot-8xx.c | |||
@@ -29,10 +29,12 @@ static void platform_fixups(void) | |||
29 | dt_fixup_cpu_clocks(bd.bi_intfreq, bd.bi_busfreq / 16, bd.bi_busfreq); | 29 | dt_fixup_cpu_clocks(bd.bi_intfreq, bd.bi_busfreq / 16, bd.bi_busfreq); |
30 | 30 | ||
31 | node = finddevice("/soc/cpm"); | 31 | node = finddevice("/soc/cpm"); |
32 | if (node) { | 32 | if (node) |
33 | setprop(node, "clock-frequency", &bd.bi_busfreq, 4); | 33 | setprop(node, "clock-frequency", &bd.bi_busfreq, 4); |
34 | setprop(node, "fsl,brg-frequency", &bd.bi_busfreq, 4); | 34 | |
35 | } | 35 | node = finddevice("/soc/cpm/brg"); |
36 | if (node) | ||
37 | setprop(node, "clock-frequency", &bd.bi_busfreq, 4); | ||
36 | } | 38 | } |
37 | 39 | ||
38 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | 40 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, |