All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: wlan-ng: fix comments style
@ 2016-05-08 14:45 YU Bo
  2016-05-09 12:26 ` Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: YU Bo @ 2016-05-08 14:45 UTC (permalink / raw)
  To: Kroah-Hartman, Kaur Chawla, Goyal; +Cc: devel, linux-kernel, yuzibode

The patch fixed warning reported by checkpatch.pl: Block comments use a
trailing */ on a separate line.

Signed-off-by: YU Bo <tsu.yubo@gmail.com>
---
  drivers/staging/wlan-ng/prism2mgmt.h |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wlan-ng/prism2mgmt.h b/drivers/staging/wlan-ng/prism2mgmt.h
index e6472034da33..371c0fe8ae9d 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.h
+++ b/drivers/staging/wlan-ng/prism2mgmt.h
@@ -82,10 +82,10 @@ int prism2mgmt_flashdl_state(wlandevice_t *wlandev, void *msgp);
  int prism2mgmt_flashdl_write(wlandevice_t *wlandev, void *msgp);
  int prism2mgmt_autojoin(wlandevice_t *wlandev, void *msgp);

-/*---------------------------------------------------------------
+/*
  * conversion functions going between wlan message data types and
  * Prism2 data types
----------------------------------------------------------------*/
+*/
  /* byte area conversion functions*/
  void prism2mgmt_bytearea2pstr(u8 *bytearea, p80211pstrd_t *pstr, int len);

--
1.7.10.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Staging: wlan-ng: fix comments style
  2016-05-08 14:45 [PATCH] Staging: wlan-ng: fix comments style YU Bo
@ 2016-05-09 12:26 ` Kroah-Hartman
  2016-05-11  1:05   ` YU Bo
  0 siblings, 1 reply; 4+ messages in thread
From: Kroah-Hartman @ 2016-05-09 12:26 UTC (permalink / raw)
  To: YU Bo; +Cc: Kaur Chawla, Goyal, devel, linux-kernel, yuzibode

On Sun, May 08, 2016 at 10:45:16AM -0400, YU Bo wrote:
> The patch fixed warning reported by checkpatch.pl: Block comments use a
> trailing */ on a separate line.
> 
> Signed-off-by: YU Bo <tsu.yubo@gmail.com>
> ---
>  drivers/staging/wlan-ng/prism2mgmt.h |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Patch doesn't apply to my tree, what branch did you make this against?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Staging: wlan-ng: fix comments style
  2016-05-09 12:26 ` Kroah-Hartman
@ 2016-05-11  1:05   ` YU Bo
  2016-05-11  4:16     ` Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: YU Bo @ 2016-05-11  1:05 UTC (permalink / raw)
  To: Kroah-Hartman; +Cc: Kaur Chawla, Goyal, devel, linux-kernel, yuzibode

Hi Greg,
On Mon, May 09, 2016 at 02:26:13PM +0200, Kroah-Hartman wrote:
>On Sun, May 08, 2016 at 10:45:16AM -0400, YU Bo wrote:
>> The patch fixed warning reported by checkpatch.pl: Block comments use a
>> trailing */ on a separate line.
>>
>> Signed-off-by: YU Bo <tsu.yubo@gmail.com>
>> ---
>>  drivers/staging/wlan-ng/prism2mgmt.h |    4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
>Patch doesn't apply to my tree, what branch did you make this against?
Thanks for your reply.
I made two branches on your tree:little,greg.
Each time i went into a branch and type:
git fetch origin && git rebase origin/staging-testing
then i repated on different branch.
Sure,i will reset my commit before these operations.
Due to network issue,i have to make patch on local kernel and `scp`
patch to my VPS then send you via mutt.It's ok for me to git am xx_xx.patch
but fail to apply git am xx_xx.mbox which save from mutt sometime:(
I will try to send you a series of patch and test it ok.
Thanks again.
>
>thanks,
>
>greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Staging: wlan-ng: fix comments style
  2016-05-11  1:05   ` YU Bo
@ 2016-05-11  4:16     ` Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Kroah-Hartman @ 2016-05-11  4:16 UTC (permalink / raw)
  To: YU Bo; +Cc: Kaur Chawla, Goyal, devel, linux-kernel, yuzibode

On Tue, May 10, 2016 at 09:05:15PM -0400, YU Bo wrote:
> Hi Greg,
> On Mon, May 09, 2016 at 02:26:13PM +0200, Kroah-Hartman wrote:
> > On Sun, May 08, 2016 at 10:45:16AM -0400, YU Bo wrote:
> > > The patch fixed warning reported by checkpatch.pl: Block comments use a
> > > trailing */ on a separate line.
> > > 
> > > Signed-off-by: YU Bo <tsu.yubo@gmail.com>
> > > ---
> > >  drivers/staging/wlan-ng/prism2mgmt.h |    4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > Patch doesn't apply to my tree, what branch did you make this against?
> Thanks for your reply.
> I made two branches on your tree:little,greg.
> Each time i went into a branch and type:
> git fetch origin && git rebase origin/staging-testing

Ok, good, that is the correct branch, I guess we just got out of sync
here, sorry about that.  Try to rebase and resend.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-11  4:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-08 14:45 [PATCH] Staging: wlan-ng: fix comments style YU Bo
2016-05-09 12:26 ` Kroah-Hartman
2016-05-11  1:05   ` YU Bo
2016-05-11  4:16     ` Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.