Re: [PATCH] hyperv: make HYPERV a menuconfig to ease disabling it all

2017-12-09 Thread Stephen Hemminger
On Sat, 9 Dec 2017 16:21:51 +0100 Vincent Legoll wrote: > No need to get into the submenu to disable all HYPERV-related > config entries. > > This makes it easier to disable all HYPERV config options > without entering the submenu. It will also enable one > to see that en/dis-abled state from t

[PATCH v3 2/2] staging: rtl8712: Cleanup codestyle, change spaces to tabs

2017-12-09 Thread Neil Singh
Cleanup below checkpatch issues: ERROR:CODE_INDENT: code indent should use tabs where possible 1409: FILE: rtl871x_security.c:1409: +from_timer(padapter, t, securitypriv.tkip_timer);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line 1409: FILE: rtl871x_security.c:14

[PATCH v3 1/2] staging: rtl8712: Cleanup codestyle, break up long line

2017-12-09 Thread Neil Singh
Cleanup below checkpatch issue: WARNING:LONG_LINE: line over 80 characters 1000: FILE: rtl871x_security.c:1000: +static void construct_ctr_preload(u8 *ctr_preload, sint a4_exists, sint qc_exists, Signed-off-by: Neil Singh --- drivers/staging/rtl8712/rtl871x_security.c | 5 +++-- 1 file changed

[PATCH v3 0/2] staging: rtl8712: Cleanup codestyle

2017-12-09 Thread Neil Singh
Cleanup some codestyle issues identified by checkpatch. Changes since v2: - Modify patches so they themselves don't trigger the checkpatch issues CHECK:PARENTHESIS_ALIGNMENT and WARNING:EMAIL_SUBJECT Changes since v1: - Split single patch into multiple Neil Singh (2): staging: rtl8712: Clean

Re: [PATCH v2 1/2] staging: rtl8712: Cleanup checkpatch issue WARNING:LONG_LINE

2017-12-09 Thread Larry Finger
On 12/09/2017 05:11 AM, Neil Singh wrote: Cleanup below checkpatch issue: WARNING:LONG_LINE: line over 80 characters 1000: FILE: rtl871x_security.c:1000: +static void construct_ctr_preload(u8 *ctr_preload, sint a4_exists, sint qc_exists, Signed-off-by: Neil Singh --- drivers/staging/rtl8712

[PATCH v3] Staging: pi433: fix brace coding style issues in pi433_if.c

2017-12-09 Thread Tomas Marek
This patch fix several brace on next line, braces not necessary, space around =/<, and space before/after open/close parenthesis coding style errors find by checkpatch in pi433_if.c. Signed-off-by: Tomas Marek --- Changes in v3: - DIO0_irq_handler update reverted - will be submitted in separate

Re: [PATCH 3/3] staging: pi433: Remove unnecessary #ifdef DEBUG around dev_dbg

2017-12-09 Thread Joe Perches
On Sat, 2017-12-09 at 19:02 +0100, Simon Sandström wrote: > dev_dbg() already depends on DEBUG. Not quite. It depends on CONFIG_DYNAMIC_DEBUG or DEBUG In any case, this patch is fine. > Signed-off-by: Simon Sandström > --- > drivers/staging/pi433/rf69.c | 4 > 1 file changed, 4 deletions

[PATCH 0/3] staging: pi433: Refactor usage of dev_dbg and #ifdef DEBUG

2017-12-09 Thread Simon Sandström
These patches refactors the usage of dev_dbg and #ifdef DEBUG in rf69.c. All dev_dbg() calls that just prints the function name are removed, since we have ftrace. For all other calls the #ifdef DEBUG block around them are removed. There are still two more defines used in rf69.c: DEBUG_FIFO_ACCESS

[PATCH 2/3] staging: pi433: Remove function entry dev_dbg()

2017-12-09 Thread Simon Sandström
ftrace can be used to trace function calls, so there is no need to use dev_dbg() here. Signed-off-by: Simon Sandström --- drivers/staging/pi433/rf69.c | 156 --- 1 file changed, 156 deletions(-) diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/

[PATCH 1/3] staging: pi433: Remove indentation on #ifdef blocks

2017-12-09 Thread Simon Sandström
ifdef blocks should not increase indentation level. Signed-off-by: Simon Sandström --- drivers/staging/pi433/rf69.c | 314 +-- 1 file changed, 153 insertions(+), 161 deletions(-) diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c ind

[PATCH 3/3] staging: pi433: Remove unnecessary #ifdef DEBUG around dev_dbg

2017-12-09 Thread Simon Sandström
dev_dbg() already depends on DEBUG. Signed-off-by: Simon Sandström --- drivers/staging/pi433/rf69.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c index 04a74423c325..6e38e6a515a4 100644 --- a/drivers/staging/pi433/rf69.c +++ b/

Re: [PATCH v2] drivers: visorbus: move driver out of staging

2017-12-09 Thread Greg KH
On Fri, Dec 08, 2017 at 02:13:18PM -0800, Joe Perches wrote: > On Fri, 2017-12-08 at 21:55 +, Kershner, David A wrote: > > > -Original Message- > > > From: Joe Perches [mailto:j...@perches.com] > > > Sent: Friday, December 8, 2017 11:53 AM > > > To: Greg KH ; Kershner, David A > > > >

INVESTMENT/BUSINESS PARTNERSHIP.

2017-12-09 Thread info . ad-web
Hello Friend, I am Msgr. Nunzio Scarano priest in the vatican city rome italy Compliment of the day, I got your contact information from a reputable business/professional directory of your country which gives me assurance of your legibility as a person. I send you this brief letter to solici

[PATCH] hyperv: make HYPERV a menuconfig to ease disabling it all

2017-12-09 Thread Vincent Legoll
No need to get into the submenu to disable all HYPERV-related config entries. This makes it easier to disable all HYPERV config options without entering the submenu. It will also enable one to see that en/dis-abled state from the outside menu. This is only intended to change menuconfig UI, not ch

[PATCH v2 1/2] staging: rtl8712: Cleanup checkpatch issue WARNING:LONG_LINE

2017-12-09 Thread Neil Singh
Cleanup below checkpatch issue: WARNING:LONG_LINE: line over 80 characters 1000: FILE: rtl871x_security.c:1000: +static void construct_ctr_preload(u8 *ctr_preload, sint a4_exists, sint qc_exists, Signed-off-by: Neil Singh --- drivers/staging/rtl8712/rtl871x_security.c | 3 ++- 1 file changed,

[PATCH v2 0/2] staging: rtl8712: Cleanup codestyle

2017-12-09 Thread Neil Singh
Cleanup some codestyle issues identified by checkpatch. Changes since v1: - Split single patch into multiple Neil Singh (2): staging: rtl8712: Cleanup checkpatch issue WARNING:LONG_LINE staging: rtl8712: Cleanup checkpatch issues CODE_INDENT and LEADING_SPACE drivers/staging/rtl8712/rtl

[PATCH v2 2/2] staging: rtl8712: Cleanup checkpatch issues CODE_INDENT and LEADING_SPACE

2017-12-09 Thread Neil Singh
Cleanup below checkpatch issues: ERROR:CODE_INDENT: code indent should use tabs where possible 1409: FILE: rtl871x_security.c:1409: +from_timer(padapter, t, securitypriv.tkip_timer);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line 1409: FILE: rtl871x_security.c:14