Re: [PATCH 3/3] Drivers: hv: hv_balloon: Don't post pressure status from interrupt context

2014-12-07 Thread Sitsofe Wheeler
On Tue, Dec 02, 2014 at 02:29:15PM -0800, K. Y. Srinivasan wrote: We currently release memory (balloon down) in the interrupt context and we also post memory status while releasing memory. Rather than posting the status in the interrupt context, wakeup the status posting thread to post the

[PATCH] Clocking-wizard: Fixed missing blank line warning

2014-12-07 Thread Athira Lekshmi
Added a new line after declaration to remove the warning 'Missing a blank line after declarations' Signed-off-by: Athira Lekshmi andnlnb...@gmail.com --- .../clocking-wizard/clk-xlnx-clock-wizard.c|1 + 1 file changed, 1 insertion(+) diff --git

Re: [PATCH] staging: lustre: fix sparse warnings related to lock context imbalance

2014-12-07 Thread Loïc Pefferkorn
On Tue, Dec 02, 2014 at 02:11:33PM -0700, Andreas Dilger wrote: On Nov 28, 2014, at 11:50 AM, Greg KH gre...@linuxfoundation.org wrote: On Thu, Nov 27, 2014 at 07:34:10PM +0100, Loïc Pefferkorn wrote: Hello Greg, After some investigation, I think that removing these wrappers is not

[PATCH] drivers: staging: rtl8723au: get rid of unneeded memset/memcpy

2014-12-07 Thread Emil Renner Berthing
This also fixes a sparse warning. Signed-off-by: Emil Renner Berthing ker...@esmil.dk --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c

Re: My new email + some notes on mt7601

2014-12-07 Thread Stanislaw Gruszka
On Sat, Dec 06, 2014 at 09:06:29PM -0800, Greg Kroah-Hartman wrote: On Sun, Dec 07, 2014 at 04:38:16AM +, parths...@laer.in wrote: On 2014-12-06 17:51, Greg Kroah-Hartman wrote: On Thu, Dec 04, 2014 at 09:54:29AM +, parths...@laer.in wrote: Hi again, Please note my new email

[PATCH] staging: rtl8188eu: hal: rtl8188e_cmd.c: Remove unused function

2014-12-07 Thread Rickard Strandqvist
Remove the function rtl8188e_set_rssi_cmd() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se --- drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c | 16

[PATCH] staging: rtl8188eu: hal: rtl8188e_hal_init.c: Remove unused function

2014-12-07 Thread Rickard Strandqvist
Remove the function GetEEPROMSize8188E() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se --- drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c | 14

[PATCH 0/20] fix misspelling of current function in string

2014-12-07 Thread Julia Lawall
These patches replace what appears to be a reference to the name of the current function but is misspelled in some way by either the name of the function itself, or by %s and then __func__ in an argument list. // smpl // sudo apt-get install python-pip // sudo pip install python-Levenshtein //

[PATCH 11/20] vme: fix misspelling of current function in string

2014-12-07 Thread Julia Lawall
Replace a misspelled function name by %s and then __func__. This is the get function, not the set function, as was indicated by the string. This was done using Coccinelle, including the use of Levenshtein distance, as proposed by Rasmus Villemoes. Signed-off-by: Julia Lawall

[PATCH] comedi: indent checkpatch errors and warnings fixed

2014-12-07 Thread Andreas Siegling
This patch fixes all indent errors in drivers/staging/comedi and its subdirectories. Since there were no other checkpatch errors, all checkpatch errors are fixed by this patch. It also fixes indent warnings, which were no space before tabs, no spaces at the start of a line and missing a blank

Re: [PATCH] comedi: indent checkpatch errors and warnings fixed

2014-12-07 Thread Greg KH
On Sun, Dec 07, 2014 at 09:03:40PM +0100, Andreas Siegling wrote: This patch fixes all indent errors in drivers/staging/comedi and its subdirectories. Since there were no other checkpatch errors, all checkpatch errors are fixed by this patch. It also fixes indent warnings, which were no

Re: My new email + some notes on mt7601

2014-12-07 Thread Greg Kroah-Hartman
On Sun, Dec 07, 2014 at 06:14:42PM +0100, Stanislaw Gruszka wrote: On Sat, Dec 06, 2014 at 09:06:29PM -0800, Greg Kroah-Hartman wrote: On Sun, Dec 07, 2014 at 04:38:16AM +, parths...@laer.in wrote: On 2014-12-06 17:51, Greg Kroah-Hartman wrote: On Thu, Dec 04, 2014 at 09:54:29AM

[PATCH] staging: rtl8188eu: os_dep: usb_ops_linux.c: Remove unused function

2014-12-07 Thread Rickard Strandqvist
Remove the function usb_writeN() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se --- drivers/staging/rtl8188eu/include/usb_ops_linux.h |1 -

[PATCH] staging: rtl8192e: rtl8192e: rtl_cam.c: Remove unused function

2014-12-07 Thread Rickard Strandqvist
Remove the function CAM_read_entry() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se --- drivers/staging/rtl8192e/rtl8192e/rtl_cam.c | 29

Re: [PATCH 0/20] fix misspelling of current function in string

2014-12-07 Thread Julian Calaby
Hi Julia, On Mon, Dec 8, 2014 at 6:20 AM, Julia Lawall julia.law...@lip6.fr wrote: These patches replace what appears to be a reference to the name of the current function but is misspelled in some way by either the name of the function itself, or by %s and then __func__ in an argument list.

Re: [PATCH 0/2] Drivers: hv: hv_balloon: Fix a deadlock in the hot-add path.

2014-12-07 Thread Yasuaki Ishimatsu
(2014/12/06 9:41), K. Y. Srinivasan wrote: Fix a deadlock in the hot-add path in the Hyper-V balloon driver. K. Y. Srinivasan (2): Drivers: base: core: Export functions to lock/unlock device hotplug lock Drivers: hv: balloon: Fix the deadlock issue in the memory hot-add

Re: [PATCH 0/20] fix misspelling of current function in string

2014-12-07 Thread Joe Perches
On Sun, 2014-12-07 at 20:20 +0100, Julia Lawall wrote: These patches replace what appears to be a reference to the name of the current function but is misspelled in some way by either the name of the function itself, or by %s and then __func__ in an argument list. At least a few of these seem

Re: [PATCH] staging: vt6655: mac.c: Remove unused function

2014-12-07 Thread Sudip Mukherjee
On Sun, Dec 07, 2014 at 11:02:44PM +0100, Rickard Strandqvist wrote: Remove the function MACbCompareContext() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist

RE: [PATCH 3/3] Drivers: hv: hv_balloon: Don't post pressure status from interrupt context

2014-12-07 Thread KY Srinivasan
-Original Message- From: Sitsofe Wheeler [mailto:sits...@gmail.com] Sent: Sunday, December 7, 2014 12:05 AM To: KY Srinivasan Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; jasow...@redhat.com

Re: [PATCH v18 06/12] dt-bindings: add document for dw_hdmi

2014-12-07 Thread Andy Yan
Hi Mark Rutland, Rob Herring, Pawel Moll, Ian Campbell, Kumar Gala: Would you please give an Ack for this? On 2014年12月05日 21:54, Philipp Zabel wrote: Am Freitag, den 05.12.2014, 14:27 +0800 schrieb Andy Yan: Signed-off-by: Andy Yan andy@rock-chips.com This binding is mostly a copy of the

Re: [PATCH 0/20] fix misspelling of current function in string

2014-12-07 Thread Julia Lawall
On Mon, 8 Dec 2014, Julian Calaby wrote: Hi Julia, On Mon, Dec 8, 2014 at 6:20 AM, Julia Lawall julia.law...@lip6.fr wrote: These patches replace what appears to be a reference to the name of the current function but is misspelled in some way by either the name of the function itself,

Re: [PATCH] staging: lustre: fix sparse warnings related to lock context imbalance

2014-12-07 Thread Andreas Dilger
On Dec 7, 2014, at 4:57 AM, Loïc Pefferkorn l...@loicp.eu wrote: On Tue, Dec 02, 2014 at 02:11:33PM -0700, Andreas Dilger wrote: On Nov 28, 2014, at 11:50 AM, Greg KH gre...@linuxfoundation.org wrote: On Thu, Nov 27, 2014 at 07:34:10PM +0100, Loïc Pefferkorn wrote: Hello Greg, After some