* [PATCH] Fix whitespaces in smartreflex.c
@ 2008-10-10 14:05 Sanjeev Premi
2008-10-17 22:31 ` Tony Lindgren
0 siblings, 1 reply; 2+ messages in thread
From: Sanjeev Premi @ 2008-10-10 14:05 UTC (permalink / raw)
To: linux-omap; +Cc: Sanjeev Premi
Signed-off-by: Sanjeev Premi <premi@ti.com>
---
arch/arm/mach-omap2/smartreflex.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
index 33f604d..453569a 100644
--- a/arch/arm/mach-omap2/smartreflex.c
+++ b/arch/arm/mach-omap2/smartreflex.c
@@ -43,10 +43,10 @@ struct omap_sr {
int srid;
int is_sr_reset;
int is_autocomp_active;
- struct clk *clk;
- u32 clk_length;
- u32 req_opp_no;
- u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
+ struct clk *clk;
+ u32 clk_length;
+ u32 req_opp_no;
+ u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
u32 opp5_nvalue;
u32 senp_mod, senn_mod;
void __iomem *srbase_addr;
@@ -55,9 +55,9 @@ struct omap_sr {
/* Custom clocks to enable SR specific enable/disable functions. */
struct sr_custom_clk {
- struct clk clk; /* meta-clock with custom enable/disable calls */
- struct clk *fck; /* actual functional clock */
- struct omap_sr *sr;
+ struct clk clk; /* meta-clock with custom enable/disable calls */
+ struct clk *fck; /* actual functional clock */
+ struct omap_sr *sr;
};
#define SR_REGADDR(offs) (sr->srbase_addr + offset)
@@ -136,7 +136,7 @@ static struct omap_sr sr2 = {
static struct sr_custom_clk sr1_custom_clk = {
.clk = {
- .name = "sr1_custom_clk",
+ .name = "sr1_custom_clk",
.enable = sr_clk_enable,
.disable = sr_clk_disable,
},
@@ -145,7 +145,7 @@ static struct sr_custom_clk sr1_custom_clk = {
static struct sr_custom_clk sr2_custom_clk = {
.clk = {
- .name = "sr2_custom_clk",
+ .name = "sr2_custom_clk",
.enable = sr_clk_enable,
.disable = sr_clk_disable,
},
--
1.5.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix whitespaces in smartreflex.c
2008-10-10 14:05 [PATCH] Fix whitespaces in smartreflex.c Sanjeev Premi
@ 2008-10-17 22:31 ` Tony Lindgren
0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2008-10-17 22:31 UTC (permalink / raw)
To: Sanjeev Premi; +Cc: linux-omap
* Sanjeev Premi <premi@ti.com> [081010 07:06]:
>
> Signed-off-by: Sanjeev Premi <premi@ti.com>
Pushing.
Tony
> ---
> arch/arm/mach-omap2/smartreflex.c | 18 +++++++++---------
> 1 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
> index 33f604d..453569a 100644
> --- a/arch/arm/mach-omap2/smartreflex.c
> +++ b/arch/arm/mach-omap2/smartreflex.c
> @@ -43,10 +43,10 @@ struct omap_sr {
> int srid;
> int is_sr_reset;
> int is_autocomp_active;
> - struct clk *clk;
> - u32 clk_length;
> - u32 req_opp_no;
> - u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
> + struct clk *clk;
> + u32 clk_length;
> + u32 req_opp_no;
> + u32 opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
> u32 opp5_nvalue;
> u32 senp_mod, senn_mod;
> void __iomem *srbase_addr;
> @@ -55,9 +55,9 @@ struct omap_sr {
>
> /* Custom clocks to enable SR specific enable/disable functions. */
> struct sr_custom_clk {
> - struct clk clk; /* meta-clock with custom enable/disable calls */
> - struct clk *fck; /* actual functional clock */
> - struct omap_sr *sr;
> + struct clk clk; /* meta-clock with custom enable/disable calls */
> + struct clk *fck; /* actual functional clock */
> + struct omap_sr *sr;
> };
>
> #define SR_REGADDR(offs) (sr->srbase_addr + offset)
> @@ -136,7 +136,7 @@ static struct omap_sr sr2 = {
>
> static struct sr_custom_clk sr1_custom_clk = {
> .clk = {
> - .name = "sr1_custom_clk",
> + .name = "sr1_custom_clk",
> .enable = sr_clk_enable,
> .disable = sr_clk_disable,
> },
> @@ -145,7 +145,7 @@ static struct sr_custom_clk sr1_custom_clk = {
>
> static struct sr_custom_clk sr2_custom_clk = {
> .clk = {
> - .name = "sr2_custom_clk",
> + .name = "sr2_custom_clk",
> .enable = sr_clk_enable,
> .disable = sr_clk_disable,
> },
> --
> 1.5.6
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-17 22:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-10 14:05 [PATCH] Fix whitespaces in smartreflex.c Sanjeev Premi
2008-10-17 22:31 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).