* [PATCH] staging: clocking-wizard: add blank line after struct declaration.
@ 2015-12-01 12:56 Christian Colic
2015-12-01 16:52 ` Sören Brinkmann
2016-02-08 4:06 ` Greg KH
0 siblings, 2 replies; 4+ messages in thread
From: Christian Colic @ 2015-12-01 12:56 UTC (permalink / raw)
To: gregkh, soren.brinkmann, devendra.aaru, sboyd, andnlnbn18, devel,
linux-kernel
Add blank line after struct declaration to fix checkpatch check.
Signed-off-by: Christian Colic <colic.christian@gmail.com>
---
drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
index b8e2f61..1cbf5eb 100644
--- a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
+++ b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
@@ -71,6 +71,7 @@ struct clk_wzrd {
int speed_grade;
bool suspended;
};
+
#define to_clk_wzrd(_nb) container_of(_nb, struct clk_wzrd, nb)
/* maximum frequencies for input/output clocks per speed grade */
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: clocking-wizard: add blank line after struct declaration.
2015-12-01 12:56 [PATCH] staging: clocking-wizard: add blank line after struct declaration Christian Colic
@ 2015-12-01 16:52 ` Sören Brinkmann
2016-02-08 4:06 ` Greg KH
1 sibling, 0 replies; 4+ messages in thread
From: Sören Brinkmann @ 2015-12-01 16:52 UTC (permalink / raw)
To: Christian Colic
Cc: gregkh, devendra.aaru, sboyd, andnlnbn18, devel, linux-kernel
On Tue, 2015-12-01 at 01:56PM +0100, Christian Colic wrote:
> Add blank line after struct declaration to fix checkpatch check.
>
> Signed-off-by: Christian Colic <colic.christian@gmail.com>
Reviewed-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Thanks,
Sören
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: clocking-wizard: add blank line after struct declaration.
2015-12-01 12:56 [PATCH] staging: clocking-wizard: add blank line after struct declaration Christian Colic
2015-12-01 16:52 ` Sören Brinkmann
@ 2016-02-08 4:06 ` Greg KH
2016-02-08 4:06 ` Greg KH
1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2016-02-08 4:06 UTC (permalink / raw)
To: Christian Colic
Cc: soren.brinkmann, devendra.aaru, sboyd, andnlnbn18, devel,
linux-kernel
On Tue, Dec 01, 2015 at 01:56:01PM +0100, Christian Colic wrote:
> Add blank line after struct declaration to fix checkpatch check.
>
> Signed-off-by: Christian Colic <colic.christian@gmail.com>
> Reviewed-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
>
> ---
> drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> index b8e2f61..1cbf5eb 100644
> --- a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> +++ b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> @@ -71,6 +71,7 @@ struct clk_wzrd {
> int speed_grade;
> bool suspended;
> };
> +
> #define to_clk_wzrd(_nb) container_of(_nb, struct clk_wzrd, nb)
>
> /* maximum frequencies for input/output clocks per speed grade */
> --
> 2.5.0
>
Doesn't apply :(
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: clocking-wizard: add blank line after struct declaration.
2016-02-08 4:06 ` Greg KH
@ 2016-02-08 4:06 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2016-02-08 4:06 UTC (permalink / raw)
To: Christian Colic
Cc: soren.brinkmann, devendra.aaru, sboyd, andnlnbn18, devel,
linux-kernel
On Sun, Feb 07, 2016 at 08:06:16PM -0800, Greg KH wrote:
> On Tue, Dec 01, 2015 at 01:56:01PM +0100, Christian Colic wrote:
> > Add blank line after struct declaration to fix checkpatch check.
> >
> > Signed-off-by: Christian Colic <colic.christian@gmail.com>
> > Reviewed-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
> >
> > ---
> > drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> > index b8e2f61..1cbf5eb 100644
> > --- a/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> > +++ b/drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.c
> > @@ -71,6 +71,7 @@ struct clk_wzrd {
> > int speed_grade;
> > bool suspended;
> > };
> > +
> > #define to_clk_wzrd(_nb) container_of(_nb, struct clk_wzrd, nb)
> >
> > /* maximum frequencies for input/output clocks per speed grade */
> > --
> > 2.5.0
> >
>
> Doesn't apply :(
Because I took another patch, which was sent after yours, sorry about
that, my fault.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-08 4:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-01 12:56 [PATCH] staging: clocking-wizard: add blank line after struct declaration Christian Colic
2015-12-01 16:52 ` Sören Brinkmann
2016-02-08 4:06 ` Greg KH
2016-02-08 4:06 ` Greg KH
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).