Re: [PATCH v2 2/2] x86/mm/pat, drivers/media/ivtv: move pat warn and replace WARN() with pr_warn()

2015-07-06 Thread Luis R. Rodriguez
On Mon, Jul 6, 2015 at 5:44 PM, Luis R. Rodriguez wrote: > If we really wanted to we could consider arch_phys_wc_add() I mean adding a __arch_phys_wc_add() which does not check for pat_enabled(). > and > deal with that this will not check for pat_enabled() and forces MTRR... > I think Andy Luto

cron job: media_tree daily build: ERRORS

2015-07-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: Tue Jul 7 04:00:18 CEST 2015 git branch: test git hash: 8783b9c50400c6279d7c3b716637b98e83d3c933 gcc versi

Re: [PATCH v2 2/2] x86/mm/pat, drivers/media/ivtv: move pat warn and replace WARN() with pr_warn()

2015-07-06 Thread Luis R. Rodriguez
On Mon, Jun 29, 2015 at 05:52:18AM -0400, Andy Walls wrote: > On June 29, 2015 2:55:05 AM EDT, Ingo Molnar wrote: > > > >* Andy Walls wrote: > > > >> On Fri, 2015-06-26 at 10:45 +0200, Ingo Molnar wrote: > >> > * Luis R. Rodriguez wrote: > >> > > >> > > On Thu, Jun 25, 2015 at 08:51:47AM +0200,

Re: dvb_usb_af9015: command failed=1 _ kernel >= 4.1.x

2015-07-06 Thread Jose Alberto Reguero
I made the patch for the af9035. I have not a af9015 whith mxl5007 and dual channel. Revert it, if it cause regresions. Jose Alberto ¡ Enviado desde mi ASUS Pad poma wrote: >On 26.05.2015 14:24, poma wrote: >> >> If it is not taken into account the already known problem of unreliable >> oper

Re: [PATCH 0/3] Update Brazilian channel tables

2015-07-06 Thread Olliver Schinagl
I tried to manually fix things, by changing the charset to utf-8 in the saved e-mail. That worked but it was only wrong for patch 1/3 and 3/3. I blindly did assume it was utf-8 so i'm not sure if I got for patch 1: warning: squelched 70 whitespace errors warning: 75 lines add whitespace errors.

Re: [PATCH 0/3] Update Brazilian channel tables

2015-07-06 Thread Olliver Schinagl
Hey Mauro, I still am having issues with your patches. Maybe my workflow is wrong or my git installation is somehow borked, but i'm getting: git am \[PATCH\ 1_3\]\ Update\ Brazilian\ ISDB-T\ tables\ -\ Mauro\ Carvalho\ Chehab\ \\ -\ 2015-07-06\ 1509.eml fatal: cannot convert from true to UTF

FM radio receiver

2015-07-06 Thread Josu Lazkano
Hello all, I am looking for a FM radio receiver to add to a Raspberry Pi to stream it with MPD. Anyone could recommend any device? I prefer to have it with USB interface. Best regards. -- Josu Lazkano -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a m

Re: [PATCH] [MEDIA] Add support for TW686[4589]-based frame grabbers.

2015-07-06 Thread Ezequiel Garcia
On 6 July 2015 at 11:31, Ezequiel Garcia wrote: > Hi Krzysztof, > > First of all: thanks a lot for the good work! > The driver looks very clean and promising. > > I've been playing with it a lot and have quite a bit > of feedback. > > First of all, I've noticed you only supported TOP, BOTTOM > and

Re: [PATCH] [MEDIA] Add support for TW686[4589]-based frame grabbers.

2015-07-06 Thread Ezequiel Garcia
Hi Krzysztof, First of all: thanks a lot for the good work! The driver looks very clean and promising. I've been playing with it a lot and have quite a bit of feedback. First of all, I've noticed you only supported TOP, BOTTOM and SEQUENTIAL fields. Is there no way to get an interlaced frame ou

[PATCH 3/3] Add new cities to Brazilian ISDB-T lists

2015-07-06 Thread Mauro Carvalho Chehab
Several new cities gained digital coverture. Add entries for them. Signed-off-by: Mauro Carvalho Chehab --- isdb-t/br-al-MatrizDeCamaragibe | 61 ++ isdb-t/br-al-PalmeiraDosIndios | 32 ++ isdb-t/br-al-Penedo | 32 ++ isdb-t/br-am-BocaD

[PATCH 2/3] Rename ISDB-T table for Gama city

2015-07-06 Thread Mauro Carvalho Chehab
Gama is actually part of Brasilia, but is a separate County. It is not called "Brasilia Gama". So, better name the file. Signed-off-by: Mauro Carvalho Chehab --- isdb-t/{br-df-BrasiliaGama => br-df-Gama} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename isdb-t/{br-df-BrasiliaGama => b

[PATCH 0/3] Update Brazilian channel tables

2015-07-06 Thread Mauro Carvalho Chehab
The Brazilian channel tables were updated in Oct, 2014. There were lots of changes since there, as Digital TV is still under deployment in Brazil. So, update all tables to reflect the current status. Mauro Carvalho Chehab (3): Update Brazilian ISDB-T tables Rename ISDB-T table for Gama city

Re: [git:media_tree/devel] [media] SMI PCIe IR driver for DVBSky cards

2015-07-06 Thread Dirk Nehring
Sehr geehrte Damen und Herren, vielen Dank für Ihre E-Mail. Ich bin bis zum 22.07.2015 nicht im Unternehmen. Bitte richten Sie Ihre E-Mail bei technischen Störungen an supp...@marcant.net. In allen weiteren dringenden Angelegenheiten wenden Sie sich bitte direkt an Herrn Marc-Henrik Delker (mdel

[PATCH v2 2/2] SMAF: add CMA allocator

2015-07-06 Thread Benjamin Gaignard
SMAF CMA allocator implement helpers functions to allow SMAF to allocate contiguous memory. match() each if at least one of the attached devices have coherent_dma_mask set to DMA_BIT_MASK(32). For allocation it use dma_alloc_attrs() with DMA_ATTR_WRITE_COMBINE and not dma_alloc_writecombine to be

[PATCH v2 1/2] create SMAF module

2015-07-06 Thread Benjamin Gaignard
Secure Memory Allocation Framework goal is to be able to allocate memory that can be securing. There is so much ways to allocate and securing memory that SMAF doesn't do it by itself but need help of additional modules. To be sure to use the correct allocation method SMAF implement deferred allocat

[PATCH v2 0/2] RFC: Secure Memory Allocation Framework

2015-07-06 Thread Benjamin Gaignard
version 2 changes: - Add one ioctl to allow allocator selection from userspace. This is required for the uses case where the first user of the buffer is a software IP which can't perform dma_buf attachement. - Add name and ranking to allocator structure to be able to sort them. - Create a

[PATCH gpio-for-next 05/10] media: i2c/adp1653: set enable gpio to output

2015-07-06 Thread Uwe Kleine-König
Without setting the direction of a gpio to output a call to gpiod_set_value doesn't have a defined outcome. Furthermore this is one caller less that stops us making the flags argument to gpiod_get*() mandatory. Acked-by: Sakari Ailus Acked-by: Pavel Machek Signed-off-by: Uwe Kleine-König ---

[PULL gpio-for-next] gpio: make flags mandatory for gpiod_get functions

2015-07-06 Thread Uwe Kleine-König
Hello, now that all patches that were in next hit Linus Torvalds' tree and v4.2-rc1 is out here comes the promised pull request that makes usage of the flags parameter mandatory for gpiod_get et al: The following changes since commit d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754: Linux 4.2-rc1 (201

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-06 Thread Andy Furniss
Peter Fassberg wrote: OK - strange, is the issue reproducable with the current version of w_scan? Yes, it is. Clutching at straws now, but maybe it's possible that the Pi is electrically more noisy then the intel. The USB lead on the 292e doesn't have a ferrite core - maybe if you have an