[PATCH] usb: gadget: f_mass_storage: restore address range on exit

2014-12-05 Thread Sanjay Singh Rawat
At the start of the thread we are changing the address limit, restoring it to the default while exiting. Signed-off-by: Sanjay Singh Rawat --- drivers/usb/gadget/function/f_mass_storage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/gadget/function/f_mass_storage.c b

[PATCH] usb: gadget: f_mass_storage: restore address range on exit

2014-12-05 Thread Sanjay Singh Rawat
At the start of the thread we are changing the address limit, restoring it to the default while exiting. Signed-off-by: Sanjay Singh Rawat snjs...@gmail.com --- drivers/usb/gadget/function/f_mass_storage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/gadget/function

Re: [PATCH] thermal: show supported policies

2014-09-18 Thread Sanjay Singh Rawat
thanks for the review Rui On Thursday 18 September 2014 06:27 AM, Zhang Rui wrote: On Tue, 2014-09-16 at 16:27 +0530, Sanjay Singh Rawat wrote: With knowledge of supported thermal policies from this attribute, it helps in setting the policy without failure from the available ones. Hmmm, I

Re: [PATCH] thermal: show supported policies

2014-09-18 Thread Sanjay Singh Rawat
thanks for the review Rui On Thursday 18 September 2014 06:27 AM, Zhang Rui wrote: On Tue, 2014-09-16 at 16:27 +0530, Sanjay Singh Rawat wrote: With knowledge of supported thermal policies from this attribute, it helps in setting the policy without failure from the available ones. Hmmm, I

[PATCH] thermal: show supported policies

2014-09-16 Thread Sanjay Singh Rawat
With knowledge of supported thermal policies from this attribute, it helps in setting the policy without failure from the available ones. Signed-off-by: Sanjay Singh Rawat --- drivers/thermal/thermal_core.c | 24 1 file changed, 24 insertions(+) diff --git a/drivers

[PATCH] thermal: show supported policies

2014-09-16 Thread Sanjay Singh Rawat
With knowledge of supported thermal policies from this attribute, it helps in setting the policy without failure from the available ones. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- drivers/thermal/thermal_core.c | 24 1 file changed, 24 insertions

[PATCH] serial: omap: free the wakeup settings in remove

2014-03-21 Thread Sanjay Singh Rawat
Signed-off-by: Sanjay Singh Rawat --- drivers/tty/serial/omap-serial.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 77f0351..56b61d4 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap

[PATCH] serial: omap: free the wakeup settings in remove

2014-03-21 Thread Sanjay Singh Rawat
Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- drivers/tty/serial/omap-serial.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 77f0351..56b61d4 100644 --- a/drivers/tty/serial/omap-serial.c +++ b

[RFC PATCH 4/6] ARM: spear: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat --- arch/arm/mach-spear/hotplug.c | 37 + 1 file changed, 1 insertion(+), 36 deletions(-) diff --git

[RFC PATCH 2/6] ARM: imx: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat --- arch/arm/mach-imx/hotplug.c | 22 +- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/arch/arm/mach-imx

[RFC PATCH 5/6] ARM: vexpress: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat --- arch/arm/mach-vexpress/hotplug.c | 38 +- 1 file changed, 1 insertion(+), 37 deletions(-) diff

[RFC PATCH 6/6] ARM: EXYNOS: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, Exynos-4 is having Cortex-A9, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat --- arch/arm/mach-exynos/hotplug.c | 40 ++-- 1 file changed, 2 insertions

[RFC PATCH 3/6] ARM: RealView: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat --- arch/arm/mach-realview/hotplug.c | 37 + 1 file changed, 1 insertion(+), 36 deletions(-) diff --git

[RFC PATCH 0/6] ARM: cpuhotplug: move common functions to core

2013-05-20 Thread Sanjay Singh Rawat
, realview, spear and vexpress SoCs. Not having h/w, the patch is not tested. Sanjay Singh Rawat (6): ARM: cpuhotplug: move common hotplug related functions to core ARM: imx: use the core cpu hotplug functions ARM: RealView: use the core cpu hotplug functions ARM: spear: use the core cpu hotplug

[RFC PATCH 1/6] ARM: cpuhotplug: move common hotplug related functions to core

2013-05-20 Thread Sanjay Singh Rawat
Add function which prepare arm processors to enter the low power for hotplug functionality and handle the return path. Signed-off-by: Sanjay Singh Rawat --- arch/arm/include/asm/hotplug.h | 24 +++ arch/arm/kernel/Makefile |1 + arch/arm/kernel/cpuhotplug.c | 64

[RFC PATCH 0/6] ARM: cpuhotplug: move common functions to core

2013-05-20 Thread Sanjay Singh Rawat
, realview, spear and vexpress SoCs. Not having h/w, the patch is not tested. Sanjay Singh Rawat (6): ARM: cpuhotplug: move common hotplug related functions to core ARM: imx: use the core cpu hotplug functions ARM: RealView: use the core cpu hotplug functions ARM: spear: use the core cpu hotplug

[RFC PATCH 1/6] ARM: cpuhotplug: move common hotplug related functions to core

2013-05-20 Thread Sanjay Singh Rawat
Add function which prepare arm processors to enter the low power for hotplug functionality and handle the return path. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/include/asm/hotplug.h | 24 +++ arch/arm/kernel/Makefile |1 + arch/arm/kernel

[RFC PATCH 3/6] ARM: RealView: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/mach-realview/hotplug.c | 37 + 1 file changed, 1 insertion(+), 36

[RFC PATCH 5/6] ARM: vexpress: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/mach-vexpress/hotplug.c | 38 +- 1 file changed, 1 insertion(+), 37

[RFC PATCH 6/6] ARM: EXYNOS: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, Exynos-4 is having Cortex-A9, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/mach-exynos/hotplug.c | 40 ++-- 1

[RFC PATCH 4/6] ARM: spear: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/mach-spear/hotplug.c | 37 + 1 file changed, 1 insertion(+), 36

[RFC PATCH 2/6] ARM: imx: use the core cpu hotplug functions

2013-05-20 Thread Sanjay Singh Rawat
Generic arm cpu hotplug related functions are moved to core hotplug code, remove the functions from the platform code. Signed-off-by: Sanjay Singh Rawat sanjay.ra...@linaro.org --- arch/arm/mach-imx/hotplug.c | 22 +- 1 file changed, 1 insertion(+), 21 deletions(-) diff