Re: [PATCH v3] staging: panel: Remove outdated TODO tasks

2014-11-01 Thread Mariusz Gorski
On Sat, Nov 01, 2014 at 10:29:16AM +0530, Sudip Mukherjee wrote: On Fri, Oct 31, 2014 at 11:08:34PM +0100, Konrad Zapalowicz wrote: On 10/31, Mariusz Gorski wrote: Remove Lindent and checkpatch.pl tasks from TODO file as the first one is obsolete and the other one is already done.

[PATCH v4] staging: panel: Remove outdated TODO task

2014-11-01 Thread Mariusz Gorski
Remove Lindent task from TODO file as it's obsolete. Signed-off-by: Mariusz Gorski marius.gor...@gmail.com --- v4: Keep checkpatch.pl on the list as there are still some strict issues. drivers/staging/panel/TODO | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/panel/TODO

Re: [PATCH 33/44] avr32: atngw100: Register with kernel poweroff handler

2014-11-01 Thread Hans-Christian Egtvedt
Around Mon 06 Oct 2014 22:28:35 -0700 or thereabout, Guenter Roeck wrote: Register with kernel poweroff handler instead of setting pm_power_off directly. Cc: Haavard Skinnemoen hskinnem...@gmail.com Cc: Hans-Christian Egtvedt egtv...@samfundet.no Signed-off-by: Guenter Roeck

Re: [PATCH v2 1/6] staging: ft1000: spaces required around that '=', '' and '=='

2014-11-01 Thread Chen Weixiang
On Sat, Nov 01, 2014 at 10:35:35AM +0530, Sudip Mukherjee wrote: many whitespace errors in the patch. checkpatch gives total: 8 errors, 23 warnings, 125 lines checked thanks sudip Hi sudip, Yes, I also run checkpatch.pl on this patch, and got several errors/warnings. But those

Re: [PATCH v2 1/6] staging: ft1000: spaces required around that '=', '' and '=='

2014-11-01 Thread Chen Weixiang
On Sat, Nov 01, 2014 at 10:55:01AM +0530, Sudip Mukherjee wrote: ok, just to verify, i thought of trying to generate a similar patch which will not give checkpatch errors. but this patch is not applying to next-20141031. thanks sudip Hi sudip, It's my fault that I'm not fetching latest

Re: [PATCH v2 1/6] staging: ft1000: spaces required around that '=', '' and '=='

2014-11-01 Thread Sudip Mukherjee
On Sat, Nov 01, 2014 at 10:09:39PM +0800, Chen Weixiang wrote: On Sat, Nov 01, 2014 at 10:35:35AM +0530, Sudip Mukherjee wrote: many whitespace errors in the patch. checkpatch gives total: 8 errors, 23 warnings, 125 lines checked thanks sudip Hi sudip, Yes, I also run

[GIT PULL] Staging driver fixes for 3.18-rc3

2014-11-01 Thread Greg KH
The following changes since commit f114040e3ea6e07372334ade75d1ee0775c355e1: Linux 3.18-rc1 (2014-10-19 18:08:38 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/ tags/staging-3.18-rc3 for you to fetch changes up to

[PATCH] staging: media: lirc: lirc_zilog.c: adjust debug messages

2014-11-01 Thread Aya Mahfouz
This patch removes one debug message and replaces a dev_err call by pr_err. Signed-off-by: Aya Mahfouz mahfouz.saif.elya...@gmail.com --- drivers/staging/media/lirc/lirc_zilog.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/staging/media/lirc/lirc_zilog.c

[PATCH 0/2] staging: ft1000: generic neatening

2014-11-01 Thread Joe Perches
Joe Perches (2): staging: ft1000: Whitespace neatening staging: ft1000: Logging message neatening drivers/staging/ft1000/ft1000-pcmcia/boot.h| 34 +- drivers/staging/ft1000/ft1000-pcmcia/ft1000.h | 30 +- drivers/staging/ft1000/ft1000-pcmcia/ft1000_cs.c | 50 +-

[PATCH 2/2] staging: ft1000: Logging message neatening

2014-11-01 Thread Joe Perches
Use a more common logging style. o Convert DEBUG macros to pr_debug o Add pr_fmt o Remove embedded function names from pr_debug o Convert printks to pr_level o Coalesce formats and align arguments o Add missing terminating newlines Signed-off-by: Joe Perches j...@perches.com ---