aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx3/clock.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-02-16 14:29:10 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2009-03-13 10:33:48 +0100
commite65fb0099fe4fe82d59ffe84f1e88a489218d7f9 (patch)
treeb35665ffe6e939961cc4aaa4f9bf2e1887d3f7a6 /arch/arm/mach-mx3/clock.c
parent30c730f8f90b08d77a73998d2ee34cf1f56e95cc (diff)
downloadkernel_samsung_smdk4412-e65fb0099fe4fe82d59ffe84f1e88a489218d7f9.tar.gz
kernel_samsung_smdk4412-e65fb0099fe4fe82d59ffe84f1e88a489218d7f9.tar.bz2
kernel_samsung_smdk4412-e65fb0099fe4fe82d59ffe84f1e88a489218d7f9.zip
[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-mx3/clock.c')
-rw-r--r--arch/arm/mach-mx3/clock.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-mx3/clock.c b/arch/arm/mach-mx3/clock.c
index 8b41facb391..bc3a3beb9a6 100644
--- a/arch/arm/mach-mx3/clock.c
+++ b/arch/arm/mach-mx3/clock.c
@@ -593,7 +593,7 @@ static struct clk epit_clk[] = {
};
static struct clk nfc_clk = {
- .name = "nfc_clk",
+ .name = "nfc",
.parent = &ahb_clk,
.get_rate = _clk_nfc_get_rate,
};
@@ -667,7 +667,7 @@ static struct clk csi_clk = {
static struct clk uart_clk[] = {
{
- .name = "uart_clk",
+ .name = "uart",
.id = 0,
.parent = &perclk_clk,
.enable = _clk_enable,
@@ -675,7 +675,7 @@ static struct clk uart_clk[] = {
.enable_shift = MXC_CCM_CGR0_UART1_OFFSET,
.disable = _clk_disable,},
{
- .name = "uart_clk",
+ .name = "uart",
.id = 1,
.parent = &perclk_clk,
.enable = _clk_enable,
@@ -683,7 +683,7 @@ static struct clk uart_clk[] = {
.enable_shift = MXC_CCM_CGR0_UART2_OFFSET,
.disable = _clk_disable,},
{
- .name = "uart_clk",
+ .name = "uart",
.id = 2,
.parent = &perclk_clk,
.enable = _clk_enable,
@@ -691,7 +691,7 @@ static struct clk uart_clk[] = {
.enable_shift = MXC_CCM_CGR1_UART3_OFFSET,
.disable = _clk_disable,},
{
- .name = "uart_clk",
+ .name = "uart",
.id = 3,
.parent = &perclk_clk,
.enable = _clk_enable,
@@ -699,7 +699,7 @@ static struct clk uart_clk[] = {
.enable_shift = MXC_CCM_CGR1_UART4_OFFSET,
.disable = _clk_disable,},
{
- .name = "uart_clk",
+ .name = "uart",
.id = 4,
.parent = &perclk_clk,
.enable = _clk_enable,
@@ -736,7 +736,7 @@ static struct clk i2c_clk[] = {
};
static struct clk owire_clk = {
- .name = "owire_clk",
+ .name = "owire",
.parent = &perclk_clk,
.enable_reg = MXC_CCM_CGR1,
.enable_shift = MXC_CCM_CGR1_OWIRE_OFFSET,