From 22b40b82f9c32980cd0435de131d0ebe794929ba Mon Sep 17 00:00:00 2001 From: Paul Walmsley Date: Wed, 2 May 2007 12:33:21 -0600 Subject: [PATCH] omap2: standardize clock.h enable_reg/enable_bit order A few of the clock definitions in mach-omap2/clock.h list the .enable_bit member before .enable_reg. This fixes those to conform with the order used in the rest of the file. Signed-off-by: Paul Walmsley Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/clock.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 71e6185ec9d..40039abc2f7 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h @@ -1318,8 +1318,8 @@ static struct clk mcbsp1_ick = { .name = "mcbsp1_ick", .parent = &l4_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, - .enable_bit = 15, .enable_reg = (void __iomem *)&CM_ICLKEN1_CORE, /* bit16 */ + .enable_bit = 15, .recalc = &omap2_followparent_recalc, }; @@ -1327,8 +1327,8 @@ static struct clk mcbsp1_fck = { .name = "mcbsp1_fck", .parent = &func_96m_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, - .enable_bit = 15, .enable_reg = (void __iomem *)&CM_FCLKEN1_CORE, + .enable_bit = 15, .recalc = &omap2_followparent_recalc, }; @@ -1336,8 +1336,8 @@ static struct clk mcbsp2_ick = { .name = "mcbsp2_ick", .parent = &l4_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, - .enable_bit = 16, .enable_reg = (void __iomem *)&CM_ICLKEN1_CORE, + .enable_bit = 16, .recalc = &omap2_followparent_recalc, }; @@ -1345,8 +1345,8 @@ static struct clk mcbsp2_fck = { .name = "mcbsp2_fck", .parent = &func_96m_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, - .enable_bit = 16, .enable_reg = (void __iomem *)&CM_FCLKEN1_CORE, + .enable_bit = 16, .recalc = &omap2_followparent_recalc, }; -- 2.41.1