Re: [PATCH 00/13] drivers: hv: kvp

2012-07-21 Thread Ben Hutchings
On Tue, 2012-07-03 at 15:24 +, KY Srinivasan wrote: > > > -Original Message- > > From: Ben Hutchings [mailto:b...@decadent.org.uk] > > Sent: Monday, July 02, 2012 3:57 PM > > To: KY Srinivasan > > Cc: Olaf Hering; Greg KH; a...@canonical.com; devel@linuxdriverproject.org; > > virtualiz

Re: 0xB16B00B5? Really? (was Re: Move hyperv out of the drivers/staging/ directory)

2012-07-21 Thread valdis . kletnieks
On Fri, 20 Jul 2012 17:03:59 +0200, richard -rw- weinberger said: > On Fri, Jul 20, 2012 at 4:00 PM, KY Srinivasan wrote: > > Thank you for your interest in fixing this problem. When we decide to > > change this > > ID, we will conform to the MSFT guidelines on constructing this guest ID. > > > >

[PATCH] staging/vme: fix checkpatch warnings

2012-07-21 Thread Toshiaki Yamane
Now checkpatch clean. $ find drivers/staging/vme -name "*.[ch]"|xargs ./scripts/checkpatch.pl \ -f --terse --nosummary|cut -f3- -d":"|sort |uniq -c|sort -n 1 ERROR: trailing whitespace 2 WARNING: Prefer pr_debug(... to printk(KERN_DEBUG, ... 5 WARNING: Prefer pr_info(... to pr

[PATCH 2/2] staging/tidspbridge: use module_platform_driver

2012-07-21 Thread Devendra Naga
the code under _init and _exit does platform_driver_register and platform_driver_unregister respectively only, so its better to use the module_platform_driver than just replicating the module_platform_driver's implementation Signed-off-by: Devendra Naga --- drivers/staging/tidspbridge/rmgr/drv

[PATCH 1/2] staging/iio: use module_platform_driver macro

2012-07-21 Thread Devendra Naga
the code which under _init and _exit does only the platform_driver_register and platform_driver_unregister, and nothing else, so its better to use the module_platform_driver macro rather duplicating its implementation Signed-off-by: Devendra Naga --- drivers/staging/iio/iio_hwmon.c | 12 +

[PATCH 3/3] staging/csr: remove firmware pointer check before giving to release_firmware

2012-07-21 Thread Devendra Naga
we do a check of firmware pointer against the NULL value before we give it to the release_firmware. as release_firmware is actually having a check against NULL, its not needed here. Signed-off-by: Devendra Naga --- drivers/staging/csr/firmware.c |4 +--- 1 file changed, 1 insertion(+), 3 de

[PATCH 2/3] staging/csr: coding style fixes at sdio_linux_remove_irq and at install_irq

2012-07-21 Thread Devendra Naga
the following coding style problems were fixed: 1. move function return type from top to the starting of the function 2. remove all the spaces at the start of a line and used tabs Signed-off-by: Devendra Naga --- drivers/staging/csr/sdio_mmc.c | 43 +++- 1

[PATCH 1/3] staging/csr: coding style fixes in CsrTimeGet

2012-07-21 Thread Devendra Naga
the following warnings were fixed: 1. removed all spaces before the start of a line and used tabs 2. removed the braces around the if as it encloses only a single statement Signed-off-by: Devendra Naga --- drivers/staging/csr/csr_time.c | 20 +--- 1 file changed, 9 insertions(+