Commit 2957f4da authored by Sanjeev Premi's avatar Sanjeev Premi Committed by Tony Lindgren

Fix whitespaces in smartreflex.c

Signed-off-by: default avatarSanjeev Premi <premi@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 99da95a5
...@@ -43,10 +43,10 @@ struct omap_sr { ...@@ -43,10 +43,10 @@ struct omap_sr {
int srid; int srid;
int is_sr_reset; int is_sr_reset;
int is_autocomp_active; int is_autocomp_active;
struct clk *clk; struct clk *clk;
u32 clk_length; u32 clk_length;
u32 req_opp_no; u32 req_opp_no;
u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue; u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
u32 opp5_nvalue; u32 opp5_nvalue;
u32 senp_mod, senn_mod; u32 senp_mod, senn_mod;
void __iomem *srbase_addr; void __iomem *srbase_addr;
...@@ -55,9 +55,9 @@ struct omap_sr { ...@@ -55,9 +55,9 @@ struct omap_sr {
/* Custom clocks to enable SR specific enable/disable functions. */ /* Custom clocks to enable SR specific enable/disable functions. */
struct sr_custom_clk { struct sr_custom_clk {
struct clk clk; /* meta-clock with custom enable/disable calls */ struct clk clk; /* meta-clock with custom enable/disable calls */
struct clk *fck; /* actual functional clock */ struct clk *fck; /* actual functional clock */
struct omap_sr *sr; struct omap_sr *sr;
}; };
#define SR_REGADDR(offs) (sr->srbase_addr + offset) #define SR_REGADDR(offs) (sr->srbase_addr + offset)
...@@ -136,7 +136,7 @@ static struct omap_sr sr2 = { ...@@ -136,7 +136,7 @@ static struct omap_sr sr2 = {
static struct sr_custom_clk sr1_custom_clk = { static struct sr_custom_clk sr1_custom_clk = {
.clk = { .clk = {
.name = "sr1_custom_clk", .name = "sr1_custom_clk",
.enable = sr_clk_enable, .enable = sr_clk_enable,
.disable = sr_clk_disable, .disable = sr_clk_disable,
}, },
...@@ -145,7 +145,7 @@ static struct sr_custom_clk sr1_custom_clk = { ...@@ -145,7 +145,7 @@ static struct sr_custom_clk sr1_custom_clk = {
static struct sr_custom_clk sr2_custom_clk = { static struct sr_custom_clk sr2_custom_clk = {
.clk = { .clk = {
.name = "sr2_custom_clk", .name = "sr2_custom_clk",
.enable = sr_clk_enable, .enable = sr_clk_enable,
.disable = sr_clk_disable, .disable = sr_clk_disable,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment