[PATCH v10 1/5] ARM: sunxi: Add documentation for sunxi consumer infrared devices

2014-06-21 Thread Alexander Bersenev
This patch adds documentation for Device-Tree bindings for sunxi IR controller. Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- .../devicetree/bindings/media/sunxi-ir.txt | 23 1 files changed, 23 insertions(+), 0 deletions(-) create mode 1

[PATCH v10 2/5] [media] rc: add sunxi-ir driver

2014-06-21 Thread Alexander Bersenev
This patch adds driver for sunxi IR controller. It is based on Alexsey Shestacov's work based on the original driver supplied by Allwinner. Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- drivers/media/rc/Kconfig | 10 ++ drivers/media/rc/Makefile|1 + drive

[PATCH v10 4/5] ARM: sunxi: Add IR controllers on A20 to dtsi

2014-06-21 Thread Alexander Bersenev
This patch adds records for two IR controllers on A20 Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- arch/arm/boot/dts/sun7i-a20.dtsi | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/bo

[PATCH v10 5/5] ARM: sunxi: Enable IR controller on cubieboard 2 and cubietruck in dts

2014-06-21 Thread Alexander Bersenev
This patch enables two IR devices in dts: - One IR device physically found on Cubieboard 2 - One IR device physically found on Cubietruck Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- arch/arm/boot/dts/sun7i-a20-cubieboard2.dts |6 ++ arch/arm/boot/dts/sun7i-a20

[PATCH v10 3/5] ARM: sunxi: Add pins for IR controller on A20 to dtsi

2014-06-21 Thread Alexander Bersenev
This patch adds pins for two IR controllers on A20 Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- arch/arm/boot/dts/sun7i-a20.dtsi | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/boot/dts/

[PATCH v10 0/5] ARM: sunxi: Add support for consumer infrared devices

2014-06-21 Thread Alexander Bersenev
This patch introduces Consumer IR(CIR) support for sunxi boards. This is based on Alexsey Shestacov's work based on the original driver supplied by Allwinner. Signed-off-by: Alexander Bersenev Signed-off-by: Alexsey Shestacov --- Changes since version 1: - Fix timer memory leaks - Fix rac

Re: [PATCH v3 1/3] iio: documentation: Added documentation for rotation from north usage attributes

2014-06-21 Thread Jonathan Cameron
On 16/06/14 23:30, Reyad Attiyat wrote: Added documentation for the sysfs attributes added by the rotation from north usage attributes. Signed-off-by: Reyad Attiyat Nearly there, but I'd prefer a slight reorganization of the docs. See below. --- Documentation/ABI/testing/sysfs-bus-iio | 79

Re: SmPL for automatic request_firmware_nowait() conversion

2014-06-21 Thread Francois Romieu
Luis R. Rodriguez : > I was just porting over an ethernet driver [0] to use > request_firmware_nowait() > since firmware loading seems can take over a minute on one device, while > at it I noticed no other ethernet drivers yet use this API so figure > this may be a trend coming if devices are get

Re: [PATCH v5] iio: dac: mcp4902/mcp4912/mcp4922 dac driver

2014-06-21 Thread Jonathan Cameron
On 15/06/14 22:17, Michael Welling wrote: This patch provides an iio device driver for the Microchip MCP49x2 series DACs. Normally this lot goes below the --- inorder that it doesn't then lead to really long commit messages in git. Anyhow, I just dropped this stuff during the commit. It's eno

Re: [PATCHv2 0/2] regulator: of: Add support for pasing regulator suspend state

2014-06-21 Thread Mark Brown
On Tue, Jun 17, 2014 at 09:39:51AM +0900, Chanwoo Choi wrote: > Hi Mark, > > Could you please review this patchset? Please don't send contentless, top posted pings. It's just more e-mail to read. signature.asc Description: Digital signature

Re: [PATCH 1/1] regulator: ltc3589: Staticize ltc3589_reg_defaults

2014-06-21 Thread Mark Brown
On Tue, Jun 10, 2014 at 12:04:53PM +0530, Sachin Kamat wrote: > 'ltc3589_reg_defaults' is local to this file. Make it static. Applied, thanks. signature.asc Description: Digital signature

Re: [PATCH] regulator: palmas: Fix SMPS enable/disable/is_enabled

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:26:23PM -0500, Nishanth Menon wrote: > We use regmap regulator ops to enable/disable and check if regulator > is enabled for various SMPS. However, these depend on valid > enable_reg, enable_mask and enable_value in regulator descriptor. Applied, thanks. signature.asc

Re: [PATCH] net/wireless/brcm80211/brcmfmac: Make return type reflect actual semantics

2014-06-21 Thread Arend van Spriel
On 06/20/14 23:32, Rasmus Villemoes wrote: Applying ++ to a bool is equivalent to setting it true, regardless of its initial value (bools are not uint1_t). Hence the function wl_get_vif_state_all can only ever return true/false. The only in-tree caller uses its return value as a boolean. So updat

Re: [PATCH 5/5] spi: sh-msiof: Add DMA support

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:16:20PM +0200, Geert Uytterhoeven wrote: > Add DMA support to the MSIOF driver using platform data. This doesn't apply against current code, can you please check and resend? signature.asc Description: Digital signature

Re: [PATCH 4/5] spi: sh-msiof: Refactor sh_msiof_transfer_one()

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:16:19PM +0200, Geert Uytterhoeven wrote: > - Move buffer pointer and length setup to the top, > - Make unsigned values unsigned, > - Loop over words and increment pointers instead of recalculating them, > which allows to kill bytes_done. Applied, thanks. sign

Re: [PATCH 2/5] spi: sh-msiof: Extract sh_msiof_spi_{start,stop}() helpers

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:16:17PM +0200, Geert Uytterhoeven wrote: > Based on an old patch by Guennadi Liakhovetski Applied, thanks. signature.asc Description: Digital signature

Re: [PATCH 3/5] spi: sh-msiof: Improve transfer error handling

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:16:18PM +0200, Geert Uytterhoeven wrote: > - Add a timeout when waiting for the transfer complete interrupt, > - If sh_msiof_spi_stop() fails, there's no need to clear IER, as the > interrupt handler has already done that, > - Propagate transfer failures in sh_m

Re: [PATCH 1/5] spi: sh-msiof: Add more register documentation

2014-06-21 Thread Mark Brown
On Fri, Jun 20, 2014 at 12:16:16PM +0200, Geert Uytterhoeven wrote: > Signed-off-by: Geert Uytterhoeven Applied, thanks. signature.asc Description: Digital signature

[PATCH] thunderbolt: select CRC32 in Kconfig

2014-06-21 Thread Andreas Noever
We use __crc32c_le in ctl.c. So make sure that the dependency is there. Reported-by: kbuild test robot Signed-off-by: Andreas Noever --- drivers/thunderbolt/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/thunderbolt/Kconfig b/drivers/thunderbolt/Kconfig index 5aab79b..c121a

Re: [Patch v2 3/3] spi: qup: Add support for v1.1.1

2014-06-21 Thread Mark Brown
On Thu, Jun 12, 2014 at 02:34:12PM -0500, Andy Gross wrote: > This patch adds support for v1.1.1 of the SPI QUP controller. Applied, thanks. signature.asc Description: Digital signature

Re: [Patch v2 1/3] spi: qup: Remove chip select function

2014-06-21 Thread Mark Brown
On Thu, Jun 12, 2014 at 02:34:10PM -0500, Andy Gross wrote: > This patch removes the chip select function. Chip select should instead be > supported using GPIOs, defining the DT entry "cs-gpios", and letting the SPI > core assert/deassert the chip select as it sees fit. Why? signature.asc Descr

Re: [Patch v2 2/3] spi: qup: Fix order of spi_register_master

2014-06-21 Thread Mark Brown
On Thu, Jun 12, 2014 at 02:34:11PM -0500, Andy Gross wrote: > This patch moves the devm_spi_register_master below the initialization of the > runtime_pm. If done in the wrong order, the spi_register_master fails if any > probed slave devices issue SPI transactions. Applied, thanks. signature.as

Re: [PATCH] x86/mce: Don't unregister CPU hotplug notifier in error path

2014-06-21 Thread Borislav Petkov
On Fri, Jun 20, 2014 at 10:04:37PM -0400, Boris Ostrovsky wrote: > I'll try it later but this doesn't look sufficient to me: we might not > reach this point if subsys_system_register() or zalloc_cpumask_var() > fail. If those fail, I'd say we have a much bigger problem than undeleted timers. > We

Re: [PATCH] staging: rtl8172u: Make ieee80211_crypto_init static

2014-06-21 Thread L . Alberto Giménez
On Thu, Jun 19, 2014 at 05:14:26PM -0700, Greg Kroah-Hartman wrote: > On Thu, Jun 12, 2014 at 07:40:49PM +0200, L. Alberto Giménez wrote: > > Fix sparse warning. > > > > Signed-off-by: L. Alberto Giménez > > --- > > drivers/staging/rtl8192u/ieee80211/ieee80211_crypt.c | 2 +- > > 1 file changed,

Contact me for more details.

2014-06-21 Thread MARTIN DESMOND
Hi friend. I want to transfer USD5.5Million into your account Contact me for more details. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

Re: [PATCH v2] clocksource: exynos-mct: Register the timer for stable udelay

2014-06-21 Thread amit daniel kachhap
On Fri, Jun 20, 2014 at 11:17 PM, Doug Anderson wrote: > Hi, > > On Fri, Jun 20, 2014 at 4:19 AM, amit daniel kachhap > wrote: >> On Fri, Jun 20, 2014 at 1:45 PM, Will Deacon wrote: >>> On Thu, Jun 19, 2014 at 05:40:49PM +0100, Tomasz Figa wrote: On 19.06.2014 18:31, Doug Anderson wrote: >>

Re: BUG when trying to use deadline iosched in 3.16-rc1

2014-06-21 Thread Fabian Frederick
On Sat, 21 Jun 2014 11:37:47 +0200 Damien Wyart wrote: > Hi, > > While testing 3.16-rc1, I got this error: > > Jun 21 11:19:03 brouette kernel: kernel tried to execute NX-protected > page - exploit attempt? (uid: 0) > Jun 21 11:19:03 brouette kernel: BUG: unable to handle kernel paging > reques

BUG when trying to use deadline iosched in 3.16-rc1

2014-06-21 Thread Damien Wyart
Hi, While testing 3.16-rc1, I got this error: Jun 21 11:19:03 brouette kernel: kernel tried to execute NX-protected page - exploit attempt? (uid: 0) Jun 21 11:19:03 brouette kernel: BUG: unable to handle kernel paging request at 8171a1f8 Jun 21 11:19:03 brouette kernel: IP: [] elv_regis

BUG when trying to use deadline iosched in 3.16-rc1

2014-06-21 Thread Damien Wyart
Hi, While testing 3.16-rc1, I got this error: Jun 21 11:19:03 brouette kernel: kernel tried to execute NX-protected page - exploit attempt? (uid: 0) Jun 21 11:19:03 brouette kernel: BUG: unable to handle kernel paging request at 8171a1f8 Jun 21 11:19:03 brouette kernel: IP: [] elv_registe

Re: [PATCH 1/1] net/dsa/dsa.c: remove null test before kfree

2014-06-21 Thread Fabian Frederick
On Sat, 21 Jun 2014 10:37:24 +0200 Bjørn Mork wrote: > > > On 20 June 2014 22:36:47 CEST, Fabian Frederick wrote: > >Fix checkpatch warning: > >WARNING: kfree(NULL) is safe this check is probably not required > > "probably not" implies that there are cases where the check *is* required. > T

Re: [PATCH 0/2] /proc/stat vs. failed order-4 allocation

2014-06-21 Thread Heiko Carstens
On Wed, Jun 18, 2014 at 02:29:31PM -0700, Andrew Morton wrote: > On Mon, 16 Jun 2014 11:04:50 +0200 Heiko Carstens > wrote: > > > These two patches are supposed to "fix" failed order-4 memory > > allocations which have been observed when reading /proc/stat. > > The problem has been observed on s

Re: [PATCHv6 2/3] devicetree: Addition of the Altera SDRAM EDAC

2014-06-21 Thread Steffen Trumtrar
On Fri, Jun 20, 2014 at 06:22:02PM -0500, ttha...@altera.com wrote: > From: Thor Thayer > > Addition of the Altera SDRAM EDAC bindings and device tree changes > > v2: Changes to SoC EDAC source code. > > v3: Fix typo in device tree documentation. > > v4,v5: No changes - bump version for consis

Re: [PATCHv6 1/3] devicetree: Addition of the Altera SDRAM controller

2014-06-21 Thread Steffen Trumtrar
Hi! On Fri, Jun 20, 2014 at 06:22:01PM -0500, ttha...@altera.com wrote: > From: Thor Thayer > > Addition of the Altera SDRAM Controller bindings and device tree changes. > > v2: Changes to SoC SDRAM EDAC code. > > v3: Implement code suggestions for SDRAM EDAC code. > > v4: Remove syscon from

[PATCH] staging: lustre: fix sparse warnings for static symbols

2014-06-21 Thread James A Shackleford
This patch fixes the following sparse warnings: drivers/staging/lustre/lnet/klnds/socklnd/socklnd.c:46:20: warning: symbol 'the_ksocklnd' was not declared. Should it be static? drivers/staging/lustre/lnet/klnds/socklnd/socklnd.c:49:19: warning: symbol 'ksocknal_ip2iface' was not declared. Should

Re: [PATCH 1/1] net/dsa/dsa.c: remove null test before kfree

2014-06-21 Thread Bjørn Mork
On 20 June 2014 22:36:47 CEST, Fabian Frederick wrote: >Fix checkpatch warning: >WARNING: kfree(NULL) is safe this check is probably not required "probably not" implies that there are cases where the check *is* required. That means that your commit message should explain why this particular c

Re: [v3.10-rt / v3.12-rt] scheduling while atomic in cgroup code

2014-06-21 Thread Mike Galbraith
On Sat, 2014-06-21 at 07:55 +0400, Nikita Yushchenko wrote: > Hi. > > Call Trace: > [e22d5a90] [c0007ea8] show_stack+0x4c/0x168 (unreliable) > [e22d5ad0] [c0618c04] __schedule_bug+0x94/0xb0 > [e22d5ae0] [c060b9ec] __schedule+0x530/0x550 > [e22d5bf0] [c060bacc] schedule+0x30/0xbc > [e22d5c00] [c06

Re: [PATCH] remove csum_partial_copy_generic_i386 to clean up exception table

2014-06-21 Thread Real Name
On Thu, Jun 05, 2014 at 11:49:49PM +0200, Richard Weinberger wrote: > Am 05.06.2014 06:15, schrieb Honggang Li: > > arch/x86/um/checksum_32.S had been copy & paste from x86. When build > > x86 uml, csum_partial_copy_generic_i386 mess up the exception table. > > In fact, exception table dose not wor

Re: [PATCH v4] openrisc: irq: use irqchip framework

2014-06-21 Thread Stefan Kristiansson
On Fri, Jun 20, 2014 at 10:04:30PM -0400, Jason Cooper wrote: > On Thu, May 29, 2014 at 11:28:08PM +0300, Stefan Kristiansson wrote: > > But I don't understand the purpose of the versioning here, > > there will never be any other or1200-pic version than the one that currently > > exists, so IMO "or

<    1   2   3