Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1499178 > unrolled thread

[PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

Started byNadim Almas <nadim.902@gmail.com>
First post2016-10-11 22:00 +0200
Last post2016-10-13 09:20 +0200
Articles 6 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue Nadim Almas <nadim.902@gmail.com> - 2016-10-11 22:00 +0200
    Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style  issue Greg KH <greg@kroah.com> - 2016-10-12 15:30 +0200
      Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue Nadim Almas <nadim.902@gmail.com> - 2016-10-12 16:20 +0200
        Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style  issue Greg KH <greg@kroah.com> - 2016-10-12 16:50 +0200
          Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style  issue Alexander Alemayhu <alexander@alemayhu.com> - 2016-10-13 06:10 +0200
            Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style  issue Greg KH <greg@kroah.com> - 2016-10-13 09:20 +0200

#1499178 — [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

FromNadim Almas <nadim.902@gmail.com>
Date2016-10-11 22:00 +0200
Subject[PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue
Message-ID<srbnr-2rH-31@gated-at.bofh.it>
fixed trailing */ Block comments and 80 character line limit coding style issue

Signed-off-by: Nadim Almas <nadim.902@gmail.com>
---


 drivers/staging/greybus/arche-apb-ctrl.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/greybus/arche-apb-ctrl.c b/drivers/staging/greybus/arche-apb-ctrl.c
index 70323aa..eeba912 100644
--- a/drivers/staging/greybus/arche-apb-ctrl.c
+++ b/drivers/staging/greybus/arche-apb-ctrl.c
@@ -168,7 +168,10 @@ static int standby_boot_seq(struct platform_device *pdev)
 	if (apb->init_disabled)
 		return 0;
 
-	/* Even if it is in OFF state, then we do not want to change the state */
+	/*
+	 * Even if it is in OFF state,
+	 * then we do not want to change the state
+	 */
 	if (apb->state == ARCHE_PLATFORM_STATE_STANDBY ||
 			apb->state == ARCHE_PLATFORM_STATE_OFF)
 		return 0;
@@ -183,7 +186,7 @@ static int standby_boot_seq(struct platform_device *pdev)
 	 * Pasted from WDM spec,
 	 *  - A falling edge on POWEROFF_L is detected (a)
 	 *  - WDM enters standby mode, but no output signals are changed
-	 * */
+	 */
 
 	/* TODO: POWEROFF_L is input to WDM module  */
 	apb->state = ARCHE_PLATFORM_STATE_STANDBY;
@@ -286,7 +289,8 @@ static ssize_t state_store(struct device *dev,
 			return count;
 
 		/* First we want to make sure we power off everything
-		 * and then enter FW flashing state */
+		 * and then enter FW flashing state
+		 */
 		poweroff_seq(pdev);
 		ret = fw_flashing_seq(pdev);
 	} else {
-- 
2.7.4

[toc] | [next] | [standalone]


#1499678 — Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

FromGreg KH <greg@kroah.com>
Date2016-10-12 15:30 +0200
SubjectRe: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue
Message-ID<srrLz-4Wx-9@gated-at.bofh.it>
In reply to#1499178
On Tue, Oct 11, 2016 at 12:49:54PM -0700, Nadim Almas wrote:
> fixed trailing */ Block comments and 80 character line limit coding style issue
> 
> Signed-off-by: Nadim Almas <nadim.902@gmail.com>
> ---

Someone else already sent this same patch in before you, sorry :(

[toc] | [prev] | [next] | [standalone]


#1499715

FromNadim Almas <nadim.902@gmail.com>
Date2016-10-12 16:20 +0200
Message-ID<srsxY-5Bl-21@gated-at.bofh.it>
In reply to#1499678
>Someone else already sent this same patch in before you, sorry
 But sir how can i come to know that Someone else already sent
particular patch  before sending that particular patch

On Wed, Oct 12, 2016 at 6:55 PM, Greg KH <greg@kroah.com> wrote:
> On Tue, Oct 11, 2016 at 12:49:54PM -0700, Nadim Almas wrote:
>> fixed trailing */ Block comments and 80 character line limit coding style issue
>>
>> Signed-off-by: Nadim Almas <nadim.902@gmail.com>
>> ---
>
> Someone else already sent this same patch in before you, sorry :(

[toc] | [prev] | [next] | [standalone]


#1499738 — Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

FromGreg KH <greg@kroah.com>
Date2016-10-12 16:50 +0200
SubjectRe: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue
Message-ID<srt10-5LT-31@gated-at.bofh.it>
In reply to#1499715
On Wed, Oct 12, 2016 at 07:33:07PM +0530, Nadim Almas wrote:
> >Someone else already sent this same patch in before you, sorry
>  But sir how can i come to know that Someone else already sent
> particular patch  before sending that particular patch

You can subscribe to the driverdev mailing list to see what othes are
working on, and you can follow my staging-testing kernel branch in the
staging.git tree.  But sometimes you just get unlucky, lots of people
are working on cleaning up staging drivers, people do the same work at
the same time quite often, it's just part of the process.

Pick something else to work on, we have lots of things to do :)

thanks,

greg k-h

[toc] | [prev] | [next] | [standalone]


#1500021 — Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

FromAlexander Alemayhu <alexander@alemayhu.com>
Date2016-10-13 06:10 +0200
SubjectRe: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue
Message-ID<srFvb-6Bm-7@gated-at.bofh.it>
In reply to#1499738
On Wed, Oct 12, 2016 at 04:45:54PM +0200, Greg KH wrote:
> 
> You can subscribe to the driverdev mailing list to see what othes are
> working on, and you can follow my staging-testing kernel branch in the
> staging.git tree.  But sometimes you just get unlucky, lots of people
> are working on cleaning up staging drivers, people do the same work at
> the same time quite often, it's just part of the process.
> 

Is this
(http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel)
the right page for subscribing?

Thanks.

[toc] | [prev] | [next] | [standalone]


#1500062 — Re: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue

FromGreg KH <greg@kroah.com>
Date2016-10-13 09:20 +0200
SubjectRe: [PATCH] Staging:greybus:arche-apb-ctrl: fixed some coding style issue
Message-ID<srIt4-oQ-19@gated-at.bofh.it>
In reply to#1500021
On Thu, Oct 13, 2016 at 06:00:45AM +0200, Alexander Alemayhu wrote:
> On Wed, Oct 12, 2016 at 04:45:54PM +0200, Greg KH wrote:
> > 
> > You can subscribe to the driverdev mailing list to see what othes are
> > working on, and you can follow my staging-testing kernel branch in the
> > staging.git tree.  But sometimes you just get unlucky, lots of people
> > are working on cleaning up staging drivers, people do the same work at
> > the same time quite often, it's just part of the process.
> > 
> 
> Is this
> (http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel)
> the right page for subscribing?

Yes.

greg k-h

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web