[PATCH] rtl8712: Fixed alignment to match open parenthesis

2016-04-24 Thread Parth Sane
Fixed parenthesis alignment checkpatch checks as per kernel coding style guidelines in hal_init.c --- drivers/staging/rtl8712/hal_init.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index 0c7

[PATCH v2] rtl8712: Fixed alignment to match open parenthesis

2016-04-24 Thread Parth Sane
Added missing signed off by line and fixed alignment to match open parenthesis. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/hal_init.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c

[PATCH v3] rtl8712: Fixed alignment to match open parenthesis

2016-04-25 Thread Parth Sane
Signed-off-by: Parth Sane --- Changes in v3: -Added missing signed off by line and fixed alignment to match open parenthesis. -Fixed location of message drivers/staging/rtl8712/hal_init.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers

[PATCH v4] rtl8712: Fixed alignment to match open parenthesis

2016-04-25 Thread Parth Sane
diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index 0c76fbc..0dd458d 100644 --- a/drivers/staging/rtl8712/hal_init.c +++ b/drivers/staging/rtl8712/hal_init.c @@ -197,8 +197,8 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)

[PATCH v5] rtl8712: Fixed alignment to match open parenthesis

2016-04-25 Thread Parth Sane
Fixed alignment to match open parenthesis. Signed-off-by: Parth Sane --- Changes in v5: -Fixed missing commit messages. drivers/staging/rtl8712/hal_init.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging

[PATCH v6] rtl8712: Fixed alignment to match open parenthesis

2016-04-25 Thread Parth Sane
Fixed alignment to match open parenthesis. Signed-off-by: Parth Sane --- Changes in v6: -Added line before Signed-off message drivers/staging/rtl8712/hal_init.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers

Re: [PATCH v6] rtl8712: Fixed alignment to match open parenthesis

2016-04-26 Thread Parth Sane
Hi, Thanks for the feedback. I did find this issue with the assistance checkpatch.pl script. Regards, Parth Sane > On 26-Apr-2016, at 8:00 PM, Luis de Bethencourt > wrote: > > On 25/04/16 16:43, Parth Sane wrote: >> Fixed alignment to match open parenthesis. >> >

Re: [PATCH v6] rtl8712: Fixed alignment to match open parenthesis

2016-04-26 Thread Parth Sane
Hi, Yes you are right on that regard. I did do that in my previous patches. It’s just something that I will have to remember now onwards. Thanks. Regards, Parth Sane > On 26-Apr-2016, at 8:14 PM, Luis de Bethencourt > wrote: > > On 26/04/16 15:33, Parth Sane wrote: >> Hi,

Re: [PATCH] staging: rtl8712: Fixed multiple parenthesis alignment warnings in ieee80211.c

2016-06-08 Thread Parth Sane
No mate, that aint just cutting it. I tried putting it, maybe i’m doing something wrong? Regards, Parth > On 08-Jun-2016, at 5:46 PM, Luis de Bethencourt > wrote: > > On 08/06/16 12:58, Parth Sane wrote: >> I’m trying to fix line 224 but its simply not happening. Can you hel

[PATCH] staging: rtl8712: Fixed multiple parenthesis alignment warnings in ieee80211.c

2016-06-08 Thread Parth Sane
Multiple parenthesis alignment warnings were thrown by checkpatch in ieee80211.c This patch effectively fixes that. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/ieee80211.c | 25 - 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/drivers/staging

Re: [PATCH] staging: rtl8712: Fixed multiple parenthesis alignment warnings in ieee80211.c

2016-06-08 Thread Parth Sane
> On 08-Jun-2016, at 5:01 PM, Luis de Bethencourt > wrote: > > On 08/06/16 12:27, Parth Sane wrote: >> Multiple parenthesis alignment warnings were thrown by checkpatch in >> ieee80211.c >> This patch effectively fixes that. >> >> Signed-off-by:

Re: [PATCH] staging: rtl8712: Fixed multiple parenthesis alignment warnings in ieee80211.c

2016-06-08 Thread Parth Sane
I’m trying to fix line 224 but its simply not happening. Can you help me with this? Regards, Parth > On 08-Jun-2016, at 5:19 PM, Luis de Bethencourt > wrote: > > On 08/06/16 12:37, Parth Sane wrote: >> >>> On 08-Jun-2016, at 5:01 PM, Luis de Bethencourt >>&g

Re: [PATCH] Fixed 1 multiple equals checkpatch warning.

2016-03-11 Thread Parth Sane
Hi, Please ignore the previous patch. I’ll be sending in one soon again since the earlier one sent more warning. Apologies for any inconvenience. Regards, Parth Sane > On 11-Mar-2016, at 2:13 PM, laerdevstud...@gmail.com wrote: > > From: Parth Sane > > diff --git a/drivers/s

Re: [PATCH] staging: netlogic: removed 1 multiple assignment checkpatch warning

2016-03-11 Thread Parth Sane
Hi, I forgot to add the signed off part in the patch please ignore the previous patches I have sent. Please bear with a kernel newbie. Regards, Parth Sane > On 11-Mar-2016, at 2:45 PM, laerdevstud...@gmail.com wrote: > > From: Parth Sane > > diff --git a/drivers/staging/netlogic

[PATCH] staging:vt6656:Fixed multiple logical comparisions warnings

2016-03-22 Thread Parth Sane
Using comparison to false and true is error prone. Fixed multiple warnings as per checkpatch guidelines. Signed-off-by: Parth Sane --- drivers/staging/vt6656/wcmd.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/vt6656/wcmd.c b/drivers/staging

[PATCH] staging: vt6656: Fixed multiple logical comparisions warnings in main_usb.c

2016-03-23 Thread Parth Sane
Using comparison to false and true is error prone. Fixed multiple warnings as per checkpatch guidelines. Signed-off-by: Parth Sane --- drivers/staging/vt6656/main_usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging

[PATCH] staging: netlogic: Fixed alignment of parantheseis checkpatch warning

2016-03-19 Thread Parth Sane
From: Ubuntu Fixed alignment of paranthesis as per checkpatch. Signed-off-by: Parth Sane --- drivers/staging/netlogic/platform_net.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c index

[PATCH] staging: netlogic: Fixed alignment of parantheseis checkpatch warning

2016-03-19 Thread Parth Sane
Fixed alignment of paranthesis as per checkpatch. Signed-off-by: Parth Sane --- drivers/staging/netlogic/platform_net.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c index daee1b2

[PATCH] staging: netlogic: Fixed alignment of parantheseis checkpatch warning

2016-03-19 Thread Parth Sane
Fixed alignment of paranthesis as per checkpatch. Please ignore earlier sent patch for paranthesis check and use this one. Signed-off-by: Parth Sane --- drivers/staging/netlogic/platform_net.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/staging/netlogic

[PATCH v3] staging: netlogic: Fixed alignment of parentheseis checkpatch warning

2016-03-19 Thread Parth Sane
Fixed alignment of parenthesis checkpatch warning to fit coding standards. Signed-off-by: Parth Sane --- drivers/staging/netlogic/platform_net.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic

[PATCH] staging: netlogic: Fixed alignment of parentheseis checkpatch warning line#186

2016-03-19 Thread Parth Sane
Fixed checkpatch warnings about parenthesis alignment at line #186. Signed-off-by: Parth Sane --- drivers/staging/netlogic/platform_net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c

Re: [PATCH v3] staging: netlogic: Fixed alignment of parentheseis checkpatch warning

2016-03-19 Thread Parth Sane
repeating work. I apologise for any inconvenience. Regards, Parth Sane signature.asc Description: Message signed with OpenPGP using GPGMail

[PATCH] staging: rtl8712: Removed copyright notice

2016-03-19 Thread Parth Sane
Removed copyright notice as per checkpatch check warning. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/drv_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/drv_types.h b/drivers/staging/rtl8712/drv_types.h index 29e47e1..ae79047 100644 --- a

[PATCH v2] staging: rtl8712: Removed warning about FSFs mailing address

2016-03-20 Thread Parth Sane
Removed FSF address notice which causes checkpatch warning. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/drv_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/drv_types.h b/drivers/staging/rtl8712/drv_types.h index 29e47e1..ae79047 100644 --- a

[PATCH] staging: rtl8712: Removed FSF address warning

2016-03-20 Thread Parth Sane
Removed checkpatch warning caused by FSF address paragraph. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/ethernet.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ethernet.h b/drivers/staging/rtl8712/ethernet.h index fad173f..039da36 100644 --- a

[PATCH] staging: rtl8712: Removed FSF address warning

2016-03-20 Thread Parth Sane
Removed checkpatch warning caused by FSF address block Signed-off-by: Parth Sane --- drivers/staging/rtl8712/hal_init.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index 8008efe..225ef37 100644 --- a/drivers

[PATCH] staging: rtl8712: Removed FSF address warning

2016-03-20 Thread Parth Sane
Removed checkpatch warning caused due to FSF address paragraph Signed-off-by: Parth Sane --- drivers/staging/rtl8712/ieee80211.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index d13b4d5..8918654 100644 --- a

[PATCH] staging: rtl8712: Removed FSF address warning

2016-03-20 Thread Parth Sane
Removed checkpatch warning caused due to FSF address paragraph Signed-off-by: Parth Sane --- drivers/staging/rtl8712/mlme_linux.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/mlme_linux.c b/drivers/staging/rtl8712/mlme_linux.c index e4e4bde..f124d72 100644

[PATCH] staging: rtl8712: Fixed Multiple Parenthesis Alignment

2016-03-20 Thread Parth Sane
Fixed multiple parenthesis alignment warnings. Signed-off-by: Parth Sane --- drivers/staging/rtl8712/hal_init.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index 225ef37..afa7fe78 100644 --- a

Re: [PATCH] staging: rtl8712: Removed FSF address warning

2016-03-20 Thread Parth Sane
> On 20-Mar-2016, at 7:56 PM, Larry Finger wrote: > > On 03/20/2016 08:59 AM, Parth Sane wrote: >> Removed checkpatch warning caused by FSF address block >> Signed-off-by: Parth Sane >> --- >> drivers/staging/rtl8712/hal_init.c | 4 >> 1 file chang

Re: [PATCH] staging: rtl8712: Fixed Multiple Parenthesis Alignment

2016-03-20 Thread Parth Sane
> On 20-Mar-2016, at 9:18 PM, Joe Perches wrote: > > On Sun, 2016-03-20 at 14:33 +0000, Parth Sane wrote: >> Fixed multiple parenthesis alignment warnings. >> Signed-off-by: Parth Sane > > Please always add a blank line after your changelog and > before your &q

[PATCH 0/5] staging: rtl8712: Fixed Multiple FSF address checkpatch warnings

2016-03-20 Thread Parth Sane
*** BLURB HERE *** Parth Sane (5): staging: rtl8712: Fixed FSF address warning in basic_types.h staging: rtl8712: Fixed FSF address warning in drv_types.h staging: rtl9712: Fixed FSF address warning in ethernet.h staging: rtl9712: Fixed FSF address warning in hal_init.c staging: rtl9712

[PATCH 2/5] staging: rtl8712: Fixed FSF address warning in drv_types.h

2016-03-20 Thread Parth Sane
Signed-off-by: Parth Sane --- drivers/staging/rtl8712/drv_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/drv_types.h b/drivers/staging/rtl8712/drv_types.h index 29e47e1..ae79047 100644 --- a/drivers/staging/rtl8712/drv_types.h +++ b/drivers/staging

[PATCH 1/5] staging: rtl8712: Fixed FSF address warning in basic_types.h

2016-03-20 Thread Parth Sane
Signed-off-by: Parth Sane --- drivers/staging/rtl8712/basic_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/basic_types.h b/drivers/staging/rtl8712/basic_types.h index 7561bed..f5c0231 100644 --- a/drivers/staging/rtl8712/basic_types.h +++ b/drivers

[PATCH 3/5] staging: rtl9712: Fixed FSF address warning in ethernet.h

2016-03-20 Thread Parth Sane
Signed-off-by: Parth Sane --- drivers/staging/rtl8712/ethernet.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ethernet.h b/drivers/staging/rtl8712/ethernet.h index fad173f..039da36 100644 --- a/drivers/staging/rtl8712/ethernet.h +++ b/drivers/staging/rtl8712

[PATCH 5/5] staging: rtl9712: Fixed FSF address warning in ieee80211.c

2016-03-20 Thread Parth Sane
Signed-off-by: Parth Sane --- drivers/staging/rtl8712/ieee80211.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index d13b4d5..8918654 100644 --- a/drivers/staging/rtl8712/ieee80211.c +++ b/drivers/staging

[PATCH 4/5] staging: rtl9712: Fixed FSF address warning in hal_init.c

2016-03-20 Thread Parth Sane
Signed-off-by: Parth Sane --- drivers/staging/rtl8712/hal_init.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index 17d2b5f..afa7fe78 100644 --- a/drivers/staging/rtl8712/hal_init.c +++ b/drivers/staging/rtl8712

Re: [PATCH] staging: rtl8712: Fixed Multiple Parenthesis Alignment

2016-03-20 Thread Parth Sane
> On 20-Mar-2016, at 10:03 PM, Roger H Newell wrote: > > > On Mar 20, 2016 1:21 PM, "Parth Sane" wrote: > > > > > > > On 20-Mar-2016, at 9:18 PM, Joe Perches wrote: > > > > > > On Sun, 2016-03-20 at 14:33 +, Parth San

Re: [PATCH 0/5] staging: rtl8712: Fixed Multiple FSF address checkpatch warnings

2016-03-20 Thread Parth Sane
> Fixed Multiple FSF address checkpatch warnings to conform to kernel coding > style. > > Parth Sane (5): > staging: rtl8712: Fixed FSF address warning in basic_types.h > staging: rtl8712: Fixed FSF address warning in drv_types.h > staging: rtl9712: Fixed FSF address

[PATCH v2 3/5] staging: rtl9712: Fixed FSF address warning in ethernet.h

2016-03-21 Thread Parth Sane
Fixed checkpatch check caused by FSF address paragraph as per guidelines. Signed-off-by: Parth Sane --- Changes in v2: - Added commit message drivers/staging/rtl8712/ethernet.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ethernet.h b/drivers/staging

[PATCH v2 0/5] staging: rtl8712: Fixed checkpatch warning due to FSF address block

2016-03-21 Thread Parth Sane
Fixed checkpatch warning caused due to FSF address block. Linux already has a copy of the GPL, so as per checkpatch this address block is unnecessary. Parth Sane (5): staging: rtl8712: Fixed FSF address warning in basic_types.h staging: rtl8712: Fixed FSF address warning in drv_types.h

[PATCH v2 1/5] staging: rtl8712: Fixed FSF address warning in basic_types.h

2016-03-21 Thread Parth Sane
Fixed checkpatch check caused by FSF address paragraph as per guidelines. Signed-off-by: Parth Sane --- Changes in v2: - Added commit message drivers/staging/rtl8712/basic_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/basic_types.h b/drivers

[PATCH v2 4/5] staging: rtl9712: Fixed FSF address warning in hal_init.c

2016-03-21 Thread Parth Sane
Fixed checkpatch warning caused due to FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v2: - Added commit message. drivers/staging/rtl8712/hal_init.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers

[PATCH v2 2/5] staging: rtl8712: Fixed FSF address warning in drv_types.h

2016-03-21 Thread Parth Sane
Fixed checkpatch check caused by FSF address paragraph as per guidelines. Signed-off-by: Parth Sane --- Changes in v2: - Added commit message drivers/staging/rtl8712/drv_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/drv_types.h b/drivers

[PATCH v2 5/5] staging: rtl9712: Fixed FSF address warning in ieee80211.c

2016-03-21 Thread Parth Sane
Fixed checkpatch warning caused to FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v2: - Added commit message drivers/staging/rtl8712/ieee80211.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging

[PATCH v3 3/5] staging: rtl8712: Fixed FSF address warning in ethernet.h

2016-03-21 Thread Parth Sane
Fixed checkpatch warning after removing FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v3: - Fixed subject - Fixed commit message drivers/staging/rtl8712/ethernet.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712

[PATCH v3 5/5] staging: rtl8712: Fixed FSF address warning in ieee80211.c

2016-03-21 Thread Parth Sane
Fixed checkpatch warning after removing FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v3: - Fixed subject - Fixed commit message drivers/staging/rtl8712/ieee80211.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712

[PATCH v3 1/5] staging: rtl8712: Fixed FSF address warning in basic_types.h

2016-03-21 Thread Parth Sane
Fixed checkpatch warning after removing FSF address paragraph as per guidelines. Signed-off-by: Parth Sane --- Changes in v3: - Fixed subject - Fixed commit message drivers/staging/rtl8712/basic_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging

[PATCH v3 0/5] staging: rtl8712: Fixed multiple checkpatch FSF address warnings

2016-03-21 Thread Parth Sane
Fixed Multiple FSF address checkpatch warnings to conform to kernel coding style. Parth Sane (5): staging: rtl8712: Fixed FSF address warning in basic_types.h staging: rtl8712: Fixed FSF address warning in drv_types.h staging: rtl8712: Fixed FSF address warning in ethernet.h staging

[PATCH v3 2/5] staging: rtl8712: Fixed FSF address warning in drv_types.h

2016-03-21 Thread Parth Sane
Fixed checkpatch warning after removing FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v3: - Fixed subject - Fixed commit message drivers/staging/rtl8712/drv_types.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712

[PATCH v3 4/5] staging: rtl8712: Fixed FSF address warning in hal_init.c

2016-03-21 Thread Parth Sane
Fixed checkpatch warning after removing FSF address block as per guidelines. Signed-off-by: Parth Sane --- Changes in v3: - Fixed subject - Fixed commit message drivers/staging/rtl8712/hal_init.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/rtl8712