diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2009-02-16 08:29:10 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-03-13 05:33:48 -0400 |
commit | e65fb0099fe4fe82d59ffe84f1e88a489218d7f9 (patch) | |
tree | b35665ffe6e939961cc4aaa4f9bf2e1887d3f7a6 /arch/arm/mach-mx1 | |
parent | 30c730f8f90b08d77a73998d2ee34cf1f56e95cc (diff) |
[ARM] MXC: remove _clk suffix from clock names
The context makes it clear already that these are clocks, so there's
no need for such a suffix. This patch only changes the clocks actually
used in the tree. The remaining clocks are renamed in the subsequent
architecture specific patches.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx1')
-rw-r--r-- | arch/arm/mach-mx1/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx1/clock.c b/arch/arm/mach-mx1/clock.c index 40a2274380a3..0d0f306851d0 100644 --- a/arch/arm/mach-mx1/clock.c +++ b/arch/arm/mach-mx1/clock.c | |||
@@ -462,7 +462,7 @@ static struct clk clko_clk = { | |||
462 | }; | 462 | }; |
463 | 463 | ||
464 | static struct clk dma_clk = { | 464 | static struct clk dma_clk = { |
465 | .name = "dma_clk", | 465 | .name = "dma", |
466 | .parent = &hclk, | 466 | .parent = &hclk, |
467 | .round_rate = _clk_parent_round_rate, | 467 | .round_rate = _clk_parent_round_rate, |
468 | .set_rate = _clk_parent_set_rate, | 468 | .set_rate = _clk_parent_set_rate, |
@@ -513,7 +513,7 @@ static struct clk gpt_clk = { | |||
513 | }; | 513 | }; |
514 | 514 | ||
515 | static struct clk uart_clk = { | 515 | static struct clk uart_clk = { |
516 | .name = "uart_clk", | 516 | .name = "uart", |
517 | .parent = &perclk[0], | 517 | .parent = &perclk[0], |
518 | .round_rate = _clk_parent_round_rate, | 518 | .round_rate = _clk_parent_round_rate, |
519 | .set_rate = _clk_parent_set_rate, | 519 | .set_rate = _clk_parent_set_rate, |