Re: [PATCH] DocBook: only copy stuff to media_api if media xml is generated

2015-11-19 Thread Sakari Ailus
Hi Mauro, On Thu, Nov 19, 2015 at 07:45:13AM -0200, Mauro Carvalho Chehab wrote: > It is possible to use: > make DOCBOOKS=device-drivers.xml htmldocs > > To produce just a few docbooks. In such case, the media docs > won't be built, causing the makefile target to return an error. > >

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-11-19 Thread Peter Ujfalusi
On 11/18/2015 05:46 PM, Andy Shevchenko wrote: > On Wed, Nov 18, 2015 at 4:21 PM, Peter Ujfalusi wrote: >> Hi Vinod, >> >> bringing this old thread back to life as I just started to work on this. > > What I remember we need to convert drivers to use new API meanwhile it >

Fw: [PATCH] [media] tda10023: fix wrong register assignment

2015-11-19 Thread Mauro Carvalho Chehab
Antti, Could you please review this patch? Thanks! Mauro Forwarded message: Date: Tue, 8 Sep 2015 09:43:04 +0200 From: Manuel Kampert To: linux-media@vger.kernel.org Subject: [PATCH] [media] tda10023: fix wrong register assignment Register INTP1 (0x12) Bit

Re: [PATCH 2/9] [media] tvp5150: add userspace subdev API

2015-11-19 Thread Lucas Stach
as-Stach/tvp5150-convert-register-access-to-regmap/20151119-005732 > config: x86_64-randconfig-x018-11181928 (attached as .config) > reproduce: > # save the attached .config to linux build tree > make ARCH=x86_64 > > All error/warnings (new ones prefixed b

Re: [BUG] TechniSat SkyStar S2 - problem tuning DVB-S2 channels

2015-11-19 Thread Jemma Denson
Hi Robert, On 18/11/15 19:08, Robert wrote: Normally i'm using kaffeine, but i have tried dvbv5-scan now. Unfortunately it segfaults. I have attached the full output including the backtrace [1] I can't help with the segfault I'm afraid, but looking at that log it is definitely not managing

[PATCH] DocBook: only copy stuff to media_api if media xml is generated

2015-11-19 Thread Mauro Carvalho Chehab
It is possible to use: make DOCBOOKS=device-drivers.xml htmldocs To produce just a few docbooks. In such case, the media docs won't be built, causing the makefile target to return an error. While this is ok for human eyes, if the above is used on an script, it would cause troubles. Fix

Re: [PATCH 2/9] [media] tvp5150: add userspace subdev API

2015-11-19 Thread Mauro Carvalho Chehab
t; > [cannot apply to: linuxtv-media/master] > > > > url: > > https://github.com/0day-ci/linux/commits/Lucas-Stach/tvp5150-convert-register-access-to-regmap/20151119-005732 > > config: x86_64-randconfig-x018-11181928 (attached as .config) > > reproduce: > &g

si2165: Add simple DVB-C support

2015-11-19 Thread Matthias Schwarzott
This series adds simple DVB-C support to the si2165 demod driver. It works only for HVR-4400/HVR-5500. For WinTV-HVR-930C-HD it fails with bad/no reception for unknown reasons. Regards Matthias -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to

[PATCH 09/10] si2165: Prepare si2165_set_frontend for splitting

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 51 ++-- 1 file changed, 37 insertions(+), 14 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index

[PATCH 02/10] si2165: rename si2165_set_parameters to si2165_set_frontend

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index d36b36c..a0e4600 100644 ---

[PATCH 07/10] si2165: Fix DVB-T bandwidth default

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index 807a3c9..e97b0e6 100644 ---

[PATCH 06/10] si2165: Simplify si2165_set_if_freq_shift usage

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index 0c1f4c4..807a3c9 100644

[PATCH 04/10] si2165: only write agc registers after reset before start_syncro

2015-11-19 Thread Matthias Schwarzott
Datasheet says they must be rewritten after reset. But it only makes sense to write them when trying to tune afterwards. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 32 +++- 1 file changed, 15 insertions(+), 17

[PATCH 10/10] si2165: Add DVB-C support for HVR-4400/HVR-5500

2015-11-19 Thread Matthias Schwarzott
It works only for HVR-4400/HVR-5500. For WinTV-HVR-930C-HD it fails with bad/no reception for unknown reasons. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 86 +--- 1 file changed, 81 insertions(+), 5 deletions(-)

[PATCH 08/10] si2165: set list of DVB-T registers together

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 73 +--- 1 file changed, 26 insertions(+), 47 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index

[PATCH 03/10] si2165: create function si2165_write_reg_list for writing register lists

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 21 + 1 file changed, 21 insertions(+) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index a0e4600..222d775 100644 ---

[PATCH 05/10] si2165: move setting ts config to init

2015-11-19 Thread Matthias Schwarzott
The TS config is fixed, so no need to write it for each tune. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 27 ++- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c

[PATCH 01/10] si2165: rename frontend -> fe

2015-11-19 Thread Matthias Schwarzott
Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c index c5d7c0d..d36b36c 100644 ---

Re: [PATCH 6/8] media: rc: treat lirc like any other protocol

2015-11-19 Thread Heiner Kallweit
Am 19.11.2015 um 14:49 schrieb Mauro Carvalho Chehab: > Hi Heiner, > > Em Mon, 16 Nov 2015 20:53:20 +0100 > Heiner Kallweit escreveu: > >> Introduce a protocol bit for lirc and treat it like any other protocol. >> This allows to get rid of all the lirc-specific code. > >

Loan

2015-11-19 Thread SHELL
Are You In Need Of A Private Or Business Loans from $10,000.00 to $10.000.000.00 At 1% Rate For Various Purposes? If Yes; Contact us Via Email: shell.l...@qq.com Full Name: Amount Needed: Duration: Country: Cell No: Sex: Best Regards -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH] DocBook: only copy stuff to media_api if media xml is generated

2015-11-19 Thread Mauro Carvalho Chehab
Em Thu, 19 Nov 2015 12:19:43 +0200 Sakari Ailus escreveu: > Hi Mauro, > > On Thu, Nov 19, 2015 at 07:45:13AM -0200, Mauro Carvalho Chehab wrote: > > It is possible to use: > > make DOCBOOKS=device-drivers.xml htmldocs > > > > To produce just a few docbooks. In such

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-11-19 Thread Arnd Bergmann
On Thursday 19 November 2015 12:34:22 Peter Ujfalusi wrote: > > I think we can go with a single API, but I don't really like that: > dma_request_channel(dev, name, *mask, fn, fn_param); > > This would cover all current uses being legacy, DT/ACPI, compat, etc: > dma_request_channel(NULL, NULL, ,

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-11-19 Thread Peter Ujfalusi
On 11/18/2015 05:07 PM, Arnd Bergmann wrote: > On Wednesday 18 November 2015 16:41:35 Peter Ujfalusi wrote: >> On 11/18/2015 04:29 PM, Arnd Bergmann wrote: >>> On Wednesday 18 November 2015 16:21:26 Peter Ujfalusi wrote: 2. non slave channel requests, where only the functionality matters,

cron job: media_tree daily build: ERRORS

2015-11-19 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Fri Nov 20 04:00:18 CET 2015 git branch: test git hash: ca78946853eb23a37260cefc074a5bf86e8b866c gcc

Re: [PATCH 4/4] si2165: Add DVB-C support for HVR-4400/HVR-5500

2015-11-19 Thread Mauro Carvalho Chehab
Em Fri, 13 Nov 2015 23:54:58 +0100 Matthias Schwarzott escreveu: > It works only for HVR-4400/HVR-5500. > For WinTV-HVR-930C-HD it fails with bad/no reception > for unknown reasons. Patch 3/4 of this series is broken. As this one depends on it, please resend both patches 3 and

Re: [PATCH] [media] davinci: add i2c Kconfig dependencies

2015-11-19 Thread Lad, Prabhakar
On Thu, Nov 19, 2015 at 12:59 PM, Arnd Bergmann wrote: > All the davinci media drivers are using the i2c framework, and > fail to build if that is ever disabled, e.g.: > > media/platform/davinci/vpif_display.c: In function 'vpif_probe': >

Re: [PATCH 6/8] media: rc: treat lirc like any other protocol

2015-11-19 Thread Mauro Carvalho Chehab
Hi Heiner, Em Mon, 16 Nov 2015 20:53:20 +0100 Heiner Kallweit escreveu: > Introduce a protocol bit for lirc and treat it like any other protocol. > This allows to get rid of all the lirc-specific code. LIRC were originally handled like a protocol, but, after some

Re: [PATCH] DocBook: only copy stuff to media_api if media xml is generated

2015-11-19 Thread Sakari Ailus
On Thu, Nov 19, 2015 at 09:53:00AM -0200, Mauro Carvalho Chehab wrote: > Em Thu, 19 Nov 2015 12:19:43 +0200 > Sakari Ailus escreveu: > > > Hi Mauro, > > > > On Thu, Nov 19, 2015 at 07:45:13AM -0200, Mauro Carvalho Chehab wrote: > > > It is possible to use: > > > make

Re: [Patch v5 2/2] media: v4l: ti-vpe: Document DRA72 CAL h/w module

2015-11-19 Thread Rob Herring
On Wed, Nov 18, 2015 at 02:47:12PM -0600, Benoit Parrot wrote: > Device Tree bindings for the DRA72 Camera Adaptation Layer (CAL) > H/W module. > > Signed-off-by: Benoit Parrot Acked-by: Rob Herring > --- > Documentation/devicetree/bindings/media/ti-cal.txt |

[PATCH] [media] davinci: add i2c Kconfig dependencies

2015-11-19 Thread Arnd Bergmann
All the davinci media drivers are using the i2c framework, and fail to build if that is ever disabled, e.g.: media/platform/davinci/vpif_display.c: In function 'vpif_probe': media/platform/davinci/vpif_display.c:1298:14: error: implicit declaration of function 'i2c_get_adapter'

[PATCH] smsir.h: remove a now duplicated definition (IR_DEFAULT_TIMEOUT)

2015-11-19 Thread Mauro Carvalho Chehab
This macro is now part of the core. Remove from Siano driver. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/common/siano/smsir.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media/common/siano/smsir.h b/drivers/media/common/siano/smsir.h index

Re: [PATCH 8/8] media: rc: define RC_BIT_ALL as ~0

2015-11-19 Thread Mauro Carvalho Chehab
Em Mon, 16 Nov 2015 20:53:52 +0100 Heiner Kallweit escreveu: > RC_BIT_ALL explicitely lists each single currently defined protocol bit. > To simplify the code and make adding a protocol easier set each bit > no matter whether the respective protocol is defined yet. > >

[PATCH 2/3] DocBook: Cleanup: remove an unused $(call) line

2015-11-19 Thread Mauro Carvalho Chehab
There's no build_images function to call. So remove it. This is just a cleanup patch, with doesn't affect the build. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DocBook/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git

[PATCH 1/3] DocBook: Add a help message for DOCBOOKS env var

2015-11-19 Thread Mauro Carvalho Chehab
Sometimes, it is needed to compile only a subset of the possible DocBooks. This is supported by the building system, but it is not docummented. Add a documentation for it. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DocBook/Makefile | 4 1 file changed,

[PATCH 3/3] DocBook: make index.html generation less verbose by default

2015-11-19 Thread Mauro Carvalho Chehab
When make htmldocs is called on non-verbose mode, it will still be verbose with index.html generation for no good reason, printing: rm -rf Documentation/DocBook/index.html; echo 'Linux Kernel HTML Documentation' >> Documentation/DocBook/index.html && echo 'Kernel Version: 4.4.0-rc1' >>

TerraTec Cinergy Hybrid T USB XS with demodulator MT352 is not detect by em28xx - Bug 108061

2015-11-19 Thread giovanni . nervi
Hi, I report this bug from bugzilla, so I hope someone can patch the main tree. https://bugzilla.kernel.org/show_bug.cgi?id=108061 you can find the patch attached to bugzilla or original from linuxtv http://linuxtv.org/pipermail/linux-dvb/2014-May/032967.html Thank you Giovanni -- To