Re: [PATCH] media:firewire:Remove unneeded function definition,avc_tuner_host2ca

2015-02-08 Thread Stefan Richter
On Feb 08 Nicholas Krause wrote: Removes the function,avc_tuner_host2ca and the ifdef marco statements around this function as there are no more callers of this function and therefor no need for it's definition anymore. Signed-off-by: Nicholas Krause xerofo...@gmail.com Your changelog is

Re: STK1160 driver connected to usb hub

2015-02-08 Thread Ezequiel Garcia
(Ccing the media ML) See my reply below. On Fri, Feb 6, 2015 at 4:36 AM, Yin Ling bird...@gmail.com wrote: Hi Ezequiel Garcia, Sorry for this bother. We are researcher at University and working on STK1160 usb connection related solusion. As our system needs multiple STK1160 to input video

TechnoTrend TT-TVStick CT2-4400v2 no firmware load

2015-02-08 Thread Sebastian Süsens
Hello, I use kernel 3.13.0 and the media_build 4e1a67e4a6c8ab71f416ea32059c92171407ba5d. I get following messages by dmesg: [ 1543.444128] usb 2-4: new high-speed USB device number 4 using ehci-pci [ 1543.577069] usb 2-4: New USB device found, idVendor=0b48, idProduct=3014 [ 1543.577088] usb

[PATCH] media: cxd2099: move pre-init values out of init()

2015-02-08 Thread luisbg
Improve code readability by moving out all pre-init values from the init function. Signed-off-by: Luis de Bethencourt luis...@samsung.com --- drivers/staging/media/cxd2099/cxd2099.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/cxd2099/cxd2099.c

[PATCH] media: bcm2048: remove unused return of function

2015-02-08 Thread Luis de Bethencourt
Integer return of bcm2048_parse_rds_rt () is never used, changing the return type to void. Signed-off-by: Luis de Bethencourt luis...@samsung.com --- drivers/staging/media/bcm2048/radio-bcm2048.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

[PATCH] rtl2832: remove compiler warning

2015-02-08 Thread Luis de Bethencourt
Cleaning the following compiler warning: rtl2832.c:703:12: warning: 'tmp' may be used uninitialized in this function Even though it could never happen since if rtl2832_rd_demod_reg () doesn't set tmp, this line would never run because we go to err. It is still nice to avoid compiler warnings.

Re: [PATCH] rtl2832: remove compiler warning

2015-02-08 Thread Luis de Bethencourt
On Sun, Feb 08, 2015 at 10:44:22PM +, Luis de Bethencourt wrote: Cleaning the following compiler warning: rtl2832.c:703:12: warning: 'tmp' may be used uninitialized in this function Even though it could never happen since if rtl2832_rd_demod_reg () doesn't set tmp, this line would never

cron job: media_tree daily build: WARNINGS

2015-02-08 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: Mon Feb 9 04:00:15 CET 2015 git branch: test git hash: 4bad5d2d25099a42e146d7b18d2b98950ed287f5 gcc

Re: TechnoTrend TT-TVStick CT2-4400v2 no firmware load

2015-02-08 Thread Olli Salonen
The si2168 and si2157 firmware is loaded when you try to use the tuner for the first time, not at the time of module load or device plugin. Cheers, -olli On 8 February 2015 at 22:17, Sebastian Süsens s.sues...@gmx.de wrote: Hello, I use kernel 3.13.0 and the media_build

Re: [PATCH] media:firewire:Remove unneeded function definition,avc_tuner_host2ca in firedtv-avc.c

2015-02-08 Thread Stefan Richter
On Feb 08 nick wrote: On 2015-02-08 06:55 PM, Stefan Richter wrote: I still am missing research on the question whether or not the Common Interface serving part of the driver needs to send Host2CA commands. If yes, we implement it and use the function. If not, we remove the function.

Fwd: divide error: 0000 in the gspca_topro

2015-02-08 Thread Linus Torvalds
I got this, and it certainly seems relevant,. It would seem that that whole 'quality' thing needs some range checking, it should presumably be in the range [1..100] in order to avoid negative 'sc' values or the divide-by-zero. Hans, Mauro? Linus -- Forwarded

Re: [PATCH] media:firewire:Remove unneeded function definition,avc_tuner_host2ca in firedtv-avc.c

2015-02-08 Thread Stefan Richter
On Feb 08 Nicholas Krause wrote: Removes the unneeded function defintion,avc_tuner_host2ca in the file, firedtv-avc. This function should have been removed during the refactoring of the firetv code base during commit id,154907957f939 due to us removing unneeded definitions of functions