request

2011-11-06 Thread Ted Anderson
Hello I will like to place a quick order with you to my location here in Beirut,Lebanon.Please advice if you can have it shipped to me.In regards to shipping my order,i will advice the best and easy way to have my order shipped to me in-case you might want to have difficulties sending orders to

Pinnacle PCTV HD 800i dvb problems

2011-11-06 Thread Andrew Sackville-West
Hi list, I've got 2 Pinnacle PCTV HD 800i cards in my mythtv system running on debian machines with stock kernels. The usual output is at the end of this email: uname -a, lspci, pertinent logs. Both cards are recognized and work fine for analog, but fail to initialize properly for digital (dvb).

[PATCH ]Re: Support for Sveon STV22 (IT9137)

2011-11-06 Thread Malcolm Priestley
This indeed a clone of Kworld UB499 2T Signed-off-by: Malcolm Priestley --- drivers/media/dvb/dvb-usb/dvb-usb-ids.h |1 + drivers/media/dvb/dvb-usb/it913x.c |6 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h b/drivers/m

Re: media0 not showing up on beagleboard-xm

2011-11-06 Thread Chris Whittenburg
Hi Laurent, On Fri, Nov 4, 2011 at 6:49 AM, Laurent Pinchart wrote: > Hi Chris, > > On Tuesday 25 October 2011 04:48:13 Chris Whittenburg wrote: >> I'm using oe-core to build the 3.0.7+ kernel, which runs fine on my >> beagleboard-xm. > > You will need board code to register the OMAP3 ISP platfor

Re: CMA v16 and DMA-mapping v13 patch series

2011-11-06 Thread Michal Nazarewicz
Marek Szyprowski writes: > Linux v3.1-rc10 with both CMA v16 and DMA-mapping v3: > git://git.infradead.org/users/kmpark/linux-2.6-samsung 3.1-rc10-cma-v16-dma-v3 I've pushed a new version based on Mel's suggestions to git://github.com/mina86/linux-2.6.git cma-17 Unfortunately, it took me

[PATCH 06/13] staging: as102: Fix the dvb device registration error path

2011-11-06 Thread Sylwester Nawrocki
Release already acquired resources when error happens during devices registration steps. Use dev_err() where struct device is available, instead of driver specific err(). Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_drv.c | 48

[PATCH 13/13] staging: as102: Eliminate as10x_handle_t alias

2011-11-06 Thread Sylwester Nawrocki
Remove pre-processor defined as10x_handle_t data type by directly replacing it with struct as102_bus_adapter_t. phandle is renamed to adap inside function bodies. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- I'm not sure about this one, maybe something less invasive is needed. ---

[PATCH 12/13] staging: as102: Define device name string pointers constant

2011-11-06 Thread Sylwester Nawrocki
Supresses following checkpatch warning: WARNING: static const char * array should probably be static const char * const Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_usb_drv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --gi

[PATCH 11/13] staging: as102: Move variable declarations to the header

2011-11-06 Thread Sylwester Nawrocki
Fixes following checkpatch.pl warning: WARNING: externs should be avoided in .c files Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_drv.h |1 + drivers/staging/media/as102/as102_fe.c |2 -- 2 files changed, 1 insertions(+), 2 deletions(-)

[PATCH 10/13] staging: as102: Use linux/uaccess.h instead of asm/uaccess.h

2011-11-06 Thread Sylwester Nawrocki
Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_drv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/media/as102/as102_drv.c b/drivers/staging/media/as102/as102_drv.c index 3234039..44f6017 100644 --- a/dri

[PATCH 09/13] staging: as102: Remove linkage specifiers for C++

2011-11-06 Thread Sylwester Nawrocki
The as10x_cmd.h header is not public so there should be no need for an "extern "C"" in it. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as10x_cmd.h |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/drivers/staging/media/as1

[PATCH 08/13] staging: as102: Replace printk(KERN_ witk pr_

2011-11-06 Thread Sylwester Nawrocki
While at it also correct some spelling errors. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_fw.c | 26 +- drivers/staging/media/as102/as102_usb_drv.c | 10 +- 2 files changed, 18 insertions(+), 18 deletion

[PATCH 07/13] staging: as102: Whitespace and indentation cleanup

2011-11-06 Thread Sylwester Nawrocki
Remove some unnecessary braces. Replace spaces with tabs where expected. Replace gcc specific __FUNCTION__ with C99 __func__. No functional changes. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_drv.c | 38 +- drivers/staging/media/as102/as

[PATCH 05/13] staging: as102: Replace pragma(pack) with attribute __packed

2011-11-06 Thread Sylwester Nawrocki
Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki Signed-off-by: Piotr Chmura --- drivers/staging/media/as102/as102_fw.h|6 +-- drivers/staging/media/as102/as10x_cmd.h | 47 +--- drivers/staging/media/as102/as10x_types.h | 15 - 3 files change

[PATCH 04/13] staging: as102: Make the driver select CONFIG_FW_LOADER

2011-11-06 Thread Sylwester Nawrocki
It doesn't seem to be of much advantage to compile in FW_LOADER support conditionally, then make the driver always select FW_LOADER and remove #idefs from the code. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/Kconfig |1 + drivers/staging/medi

[PATCH 03/13] staging: as102: Remove leftovers of the SPI bus driver

2011-11-06 Thread Sylwester Nawrocki
SPI bus driver support is not included in this module, the SPI driver files are missing. But some bits are still present so clean up the unused code. The SPI driver support can be properly added later if needed. Then CONFIG_AS102_SPI and CONFIG_AS102_USB is now not needed and the pre-processor sta

[PATCH 02/13] staging: as102: Remove unnecessary typedefs

2011-11-06 Thread Sylwester Nawrocki
According to the kernel coding rules typedefs should be avoided, so replace theit occurances with explicit enum/union types. Cc: Devin Heitmueller Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as10x_cmd.h | 127 +++ 1 files changed, 63 insertions

[PATCH 01/13] staging: as102: Remove comment tags for editors configuration

2011-11-06 Thread Sylwester Nawrocki
From: Piotr Chmura Cc: Devin Heitmueller Signed-off-by: Piotr Chmura Signed-off-by: Sylwester Nawrocki --- drivers/staging/media/as102/as102_drv.c |2 -- drivers/staging/media/as102/as102_drv.h |2 -- drivers/staging/media/as102/as102_fe.c |2 -- drivers/staging/media

[PATCH 00/13] Remaining coding style clean up of AS102 driver

2011-11-06 Thread Sylwester Nawrocki
Hello, the following patch set is a further cleanup of the AS102 DVB-T receiver driver. I'm not sure if there are more issues to address before moving the driver to drivers/media/dvb/, but checkpatch.pl seems now to be fairly happy about the driver's state: 8<-- $ scripts/checkpatch.pl -f d

Re: femon signal strength

2011-11-06 Thread Steffen Barszus
On Sun, 6 Nov 2011 10:01:49 -0500 Devin Heitmueller wrote: > On Sunday, November 6, 2011, Steffen Barszus > wrote: > > On Sat, 5 Nov 2011 15:38:50 -0400 > > Devin Heitmueller wrote: > > > >> On Saturday, November 5, 2011, Steffen Barszus > >> wrote: > >> > On Wed, 26 Oct 2011 15:58:32 -0400 >

cron job: media_tree daily build: WARNINGS

2011-11-06 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:Sun Nov 6 19:00:18 CET 2011 git hash:31cea59efb3a4210c063f31c061ebcaff833f583 gcc version: i686-linux-gcc (GCC

Re: FX2 FW: conversion from Intel HEX to DVB USB "hexline"

2011-11-06 Thread Patrick Boettcher
On Sunday, November 06, 2011 07:07:31 PM Antti Palosaari wrote: > Many thanks! > > Actually, I was just started to write similar Python script! You got > maybe 15min late but still 15min before mine was ready :) > > Format was nothing more than convert ASCII hex values to binary bytes > and strip

Re: FX2 FW: conversion from Intel HEX to DVB USB "hexline"

2011-11-06 Thread Antti Palosaari
Many thanks! Actually, I was just started to write similar Python script! You got maybe 15min late but still 15min before mine was ready :) Format was nothing more than convert ASCII hex values to binary bytes and stripping out all white spaces and Intel HEX start code ":". Why it was initi

Re: Anchor Chips V4L2 driver

2011-11-06 Thread John McMaster
On 11/06/2011 01:02 AM, Mauro Carvalho Chehab wrote: > Em 06-11-2011 04:36, John McMaster escreveu: >> On 06/07/2011 12:35 AM, Hans de Goede wrote: >>> Hi, >>> >>> On 06/07/2011 07:24 AM, John McMaster wrote: On 06/06/2011 12:43 AM, Hans de Goede wrote: > Hi, > > On 06/06/2011 07:4

Re: FX2 FW: conversion from Intel HEX to DVB USB "hexline"

2011-11-06 Thread Patrick Boettcher
Hi Antti, On Sunday, November 06, 2011 03:26:20 PM Antti Palosaari wrote: > Is there any simple tool (or one liner script :) to convert normal Intel > HEX firmware to format used by DVB USB Cypress firmware loader? > > Or is there some other way those are created? > > Loader is here: > dvb-usb-f

[PATCH] it913x-fe ver 1.10 correct SNR reading from frontend.

2011-11-06 Thread Malcolm Priestley
Correction of reading from frontend and represents a SNR nonlinear scale of minimum signal to full signal. Signed-off-by: Malcolm Priestley --- drivers/media/dvb/frontends/it913x-fe.c | 56 +++ 1 files changed, 49 insertions(+), 7 deletions(-) diff --git a/drivers/

[PATCH] bt8xx: add support for PCI device ID 0x36c

2011-11-06 Thread Peter De Schrijver
add support for conexant PCI device 0x36c. Seems to be fully compatible with the currently supported chips, yet the chip has different PCI ID. Signed-off-by: Peter De Schrijver --- drivers/media/video/bt8xx/bt848.h |5 - drivers/media/video/bt8xx/bttv-driver.c |1 + 2 files cha

[PATCH] bt8xx: add support for Tongwei Video Technology TD-3116

2011-11-06 Thread Peter De Schrijver
The following patch adds support for the Tongwei Video Technology TD-3116 board. This is a Bt878 based capture card with 16 inputs meant for surveilance applications. It also offers a way to check which inputs have a video signal while capturing another input. In addition there are a number of al

FX2 FW: conversion from Intel HEX to DVB USB "hexline"

2011-11-06 Thread Antti Palosaari
Is there any simple tool (or one liner script :) to convert normal Intel HEX firmware to format used by DVB USB Cypress firmware loader? Or is there some other way those are created? Loader is here: dvb-usb-firmware.c int usb_cypress_load_firmware() Antti -- http://palosaari.fi/ -- To unsubsc

[PATCH] it913x ver 1.09 support for USB 1 devices (IT9135)

2011-11-06 Thread Malcolm Priestley
IT9135 devices do support USB 1. Support added with restricton on pid count to 5. IT9137 devices wil not connect in USB 1 mode. Signed-off-by: Malcolm Priestley --- drivers/media/dvb/dvb-usb/it913x.c | 23 --- 1 files changed, 20 insertions(+), 3 deletions(-) diff --git a/

Re: femon signal strength

2011-11-06 Thread Steffen Barszus
On Sat, 5 Nov 2011 15:38:50 -0400 Devin Heitmueller wrote: > On Saturday, November 5, 2011, Steffen Barszus > wrote: > > On Wed, 26 Oct 2011 15:58:32 -0400 > > James wrote: > >> How about adding switches to femon, it won't be automatic? > >> > >> I'm going to make femon work for my card, anyway

EV_REP and imon

2011-11-06 Thread Anders
Hi, I've got an imon device (15c2:ffdc) on kernel 3.1.0-rc10 which, as far as I can tell, is supposed to support ev_REP. However, irw shows a steady flow of oneshot events when I press and hold a button. 160 0 KEY_OK usb-15c2_ffdc-event-if00 160 0 KEY_OK usb-15c2_ffdc-event-if00 160 0 KEY_OK usb

Re: Anchor Chips V4L2 driver

2011-11-06 Thread Mauro Carvalho Chehab
Em 06-11-2011 04:36, John McMaster escreveu: > On 06/07/2011 12:35 AM, Hans de Goede wrote: >> Hi, >> >> On 06/07/2011 07:24 AM, John McMaster wrote: >>> On 06/06/2011 12:43 AM, Hans de Goede wrote: Hi, On 06/06/2011 07:40 AM, John McMaster wrote: > On 06/03/2011 06:22 AM, Hans d