[GIT PULL] fixes for 3.15

2014-05-03 Thread Guennadi Liakhovetski
Hi Mauro, I've collected these patches over some time, they contain real fixes for real problems :) Please, push to 3.15 before it enters a critical life-or-world-rescuing if-not-be-prepared-to-be-fried phase :) The following changes since commit 6c6ca9c2a5b97ab37ffd1b091d15eb5cd3f1bf23:

Please Acknowledge My Proposal

2014-05-03 Thread Gva Abogados
Please Acknowledge My Proposal!! My name is Mr. Juan Martin Domingo a lawyer resident in Spain. I am writing to let you know I have some FUNDS I want to transfer and am seeking if you can be a beneficiary...Do not hesitate to Contact me for more information if interested: gva_aboga...@aim.com

[PATCH] V4L: soc-camera: wxplicitly free allocated managed memory on error

2014-05-03 Thread Guennadi Liakhovetski
devm_kzalloc() allocations are freed when the device is unbound. But if a certain path fails and the allocated memory cannot be used anyway it is better to free it explicitly immediately. This patch does exactly this if asynchronous group probing in scan_async_group() fails after memory has been

Re: [PATCH v5 1/3] ARM: sunxi: Add documentation for sunxi consumer infrared devices

2014-05-03 Thread Maxime Ripard
On Wed, Apr 30, 2014 at 09:16:48PM +0600, Alexander Bersenev wrote: This patch adds documentation for Device-Tree bindings for sunxi IR controller. Signed-off-by: Alexander Bersenev b...@hackerdom.ru Signed-off-by: Alexsey Shestacov wingr...@linux-sunxi.org ---

Re: [PATCH v3] sunxi: Add support for consumer infrared devices

2014-05-03 Thread Maxime Ripard
On Wed, Apr 30, 2014 at 02:06:27AM -0700, Александр Берсенев wrote: Also setting clock-frequency via DT is not implenented yet for sunxi clocks. I can try to add this functionality too. The clock frequency should be on the device node, not the clock one. On such cases, it's up to the device to

Re: [PATCH v5 2/3] ARM: sunxi: Add driver for sunxi IR controller

2014-05-03 Thread Maxime Ripard
On Wed, Apr 30, 2014 at 09:16:49PM +0600, Alexander Bersenev wrote: 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 b...@hackerdom.ru Signed-off-by: Alexsey

Re: [PATCH v5 3/3] ARM: sunxi: Add IR controller support in DT on A20

2014-05-03 Thread Maxime Ripard
On Wed, Apr 30, 2014 at 09:16:50PM +0600, Alexander Bersenev wrote: This patch adds IR controller in A20 Device-Tree: - Two IR devices found in A20 user manual - Pins for two devices - One IR device physically found on Cubieboard 2 - One IR device physically found on Cubietruck

[PATCH 2/3] smiapp: Check for GPIO validity using gpio_is_valid()

2014-05-03 Thread Sakari Ailus
Do not use our special value, SMIAPP_NO_XSHUTDOWN. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/i2c/smiapp/smiapp-core.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/media/i2c/smiapp/smiapp-core.c

[PATCH 3/3] smiapp: Return correct return value in smiapp_registered()

2014-05-03 Thread Sakari Ailus
Prepare for supporting systems using the Device tree. Should the resources not be available at the time of driver probe(), the EPROBE_DEFER error code must be also returned from its probe function. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/i2c/smiapp/smiapp-core.c | 15

smiapp: Minor improvements, early preparation for DT support

2014-05-03 Thread Sakari Ailus
Hi, These patches prepare the smiapp driver for DT support later on. The regulator name will be lower case. Wrong error values were returned in probe --- instead pass them through, as -EPROBE_DEFER may have a quantifiable practical effect compared to other error codes. -- Kind regards, Sakari

Re: [PATCH 0/2] Add support for sii9234 chip

2014-05-03 Thread Greg KH
On Fri, Apr 11, 2014 at 01:48:28PM +0200, Tomasz Stanislawski wrote: Hi everyone, This patchset adds support for sii9234 HD Mobile Link Bridge. The chip is used to convert HDMI signal into MHL. The driver enables HDMI output on Trats and Trats2 boards. The code is based on the driver

[PATCH 2/6] [dvb-apps] dvbscan: fix infinite loop parsing arguments

2014-05-03 Thread Jonathan McCrohan
Reproducible using 'dvbscan -out raw - some_file' Bug-Debian: http://bugs.debian.org/606728 Signed-off-by: Jonathan McCrohan jmccro...@gmail.com --- util/dvbscan/dvbscan.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util/dvbscan/dvbscan.c b/util/dvbscan/dvbscan.c index f23411f..462c275

[PATCH 0/6] [dvb-apps] Various dvb-apps fixes and enhancements

2014-05-03 Thread Jonathan McCrohan
Hi, The following patch set contains various fixes and enhancements found during the packaging of the next version of Debian's dvb-apps package. A number of these patches have lived as Debian specific patches for a long time, however, there is no reason not to upstream them for everyone's

[PATCH 1/6] [dvb-apps] dvb-apps: fix typos throughout the dvb-apps tree

2014-05-03 Thread Jonathan McCrohan
As found by Debian's Lintian tool. Signed-off-by: Jonathan McCrohan jmccro...@gmail.com --- lib/libdvben50221/en50221_transport.c | 4 ++-- lib/libdvbsec/dvbsec_cfg.h| 2 +- util/alevt/exp-gfx.c | 2 +- util/dib3000-watch/dib3000-watch.c| 2 +-

[PATCH 3/6] [dvb-apps] dvb-apps: make zap flush stdout after status line

2014-05-03 Thread Jonathan McCrohan
Bug-Debian: http://bugs.debian.org/357126 Signed-off-by: Jonathan McCrohan jmccro...@gmail.com --- util/szap/czap.c | 3 ++- util/szap/szap.c | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/util/szap/czap.c b/util/szap/czap.c index f49c524..062545f 100644 ---

[PATCH 5/6] [dvb-apps] alevt: fix FTBFS with libpng15

2014-05-03 Thread Jonathan McCrohan
libpng15 no longer includes zlib.h; we must include it ourselves Bug-Debian: http://bugs.debian.org/742566 Signed-off-by: Jonathan McCrohan jmccro...@gmail.com --- util/alevt/exp-gfx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util/alevt/exp-gfx.c b/util/alevt/exp-gfx.c index

[PATCH 6/6] [dvb-apps] dvb-apps: add man pages

2014-05-03 Thread Jonathan McCrohan
Add man pages written by Uwe Bugla and Tobias Grimm. Add Makefile written by myself. Bug-Debian: http://bugs.debian.org/312570 Signed-off-by: Jonathan McCrohan jmccro...@gmail.com --- Make.rules| 1 + Makefile | 1 + man/Makefile | 13