[PATCH] tv tuner max2165 driver: extend frequency range

2015-10-21 Thread Walter Cheuk
Extend the frequency range to cover Hong Kong's digital TV broadcasting, which should be the whole UHF; RTHK TV uses 802MHz and is not covered currently. Tested on my TV tuner card "MyGica X8558 Pro". Signed-off-by: Walter Cheuk --- --- media/drivers/media/tuners/max2165.c.orig 2015-10-22 12:01

cron job: media_tree daily build: OK

2015-10-21 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: Thu Oct 22 04:00:21 CEST 2015 git branch: test git hash: 79f5b6ae960d380c829fb67d5dadcd1d025d2775 gcc versi

[shuah:alsa_mc_next_gen 54/113] DockBook: Warning(drivers/media/dvb-core/dvbdev.h:159): No description found for parameter 'tsout_num_entities'

2015-10-21 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux.git alsa_mc_next_gen head: c24b36476a8eccb0e797729bf1555d3a615bc14d commit: c341cfe0a01b76b00e44d3e8799b76efb402c6f0 [54/113] [media] dvb: modify core to implement interfaces/entities at MC new gen reproduce: make htmldocs All

Lieber Freund,

2015-10-21 Thread Dr.John Martins
Barclays Bank PLC Hauptstraße 28 Nottinghamshire Vereinigtes Königreich NG1 2bd Lieber Freund, Mein Name ist John k. Martins und ich bin der chief Officer von der Barclays Bank Nottingham, Vereinigtes Königreich. Ich entdeckte eine Summe von £ 16,5 Millionen (sechzehn Millionen fünf hundert

[shuah:alsa_mc_next_gen 37/113] DockBook: Warning(drivers/media/dvb-core/dvbdev.h:157): No description found for parameter 'intf_devnode'

2015-10-21 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux.git alsa_mc_next_gen head: c24b36476a8eccb0e797729bf1555d3a615bc14d commit: d3dbc29c3889d7ce09e2d2a421f5df412588afa8 [37/113] [media] dvbdev: add support for interfaces reproduce: make htmldocs All warnings (new ones prefixed

[GIT PULL] Alsa_Au0828_mc_next_gen work for mchehab_experimental/mc_next_gen.v8.4

2015-10-21 Thread Shuah Khan
Hi Mauro, Could you please pull these 23 patches into the mchehab_experimental/mc_next_gen.v8.4 to enable easier reviews and tests on this work. thanks, -- Shuah The following changes since commit 3e78030c0f16918bd095d550ecad6d06884b00dc: [media] media-entity.c: get rid of var length arrays (

[PATCH] hackrf: fix possible null ptr on debug printing

2015-10-21 Thread Antti Palosaari
drivers/media/usb/hackrf/hackrf.c:1533 hackrf_probe() error: we previously assumed 'dev' could be null (see line 1366) Reported-by: Dan Carpenter Signed-off-by: Antti Palosaari --- drivers/media/usb/hackrf/hackrf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/medi

re: [media] hackrf: add support for transmitter

2015-10-21 Thread Dan Carpenter
Hello Antti Palosaari, The patch 8bc4a9ed8504: "[media] hackrf: add support for transmitter" from Oct 10, 2015, leads to the following static checker warning: drivers/media/usb/hackrf/hackrf.c:1533 hackrf_probe() error: we previously assumed 'dev' could be null (see line 1366) dr

Re: Trying to get Terratec Cinergy T XS to work

2015-10-21 Thread Alberto Mardegan
Thanks to another developer, I've made some progress and loaded the driver with the right tuner (mt2060). The /dev/dvb/* nodes are created. Now the problem is that when I run a scan, the mt2060_set_params() function is not called at all [1]. I've set the "debug" and "frontend_debug" flags to 1, bu

Re: [PATCH v5 0/3] RFC: Secure Memory Allocation Framework

2015-10-21 Thread Benjamin Gaignard
2015-10-21 16:34 GMT+02:00 James Morris : > On Wed, 21 Oct 2015, Benjamin Gaignard wrote: > >> >> The outcome of the previous RFC about how do secure data path was the need >> of a secure memory allocator (https://lkml.org/lkml/2015/5/5/551) >> > > Have you addressed all the questions raised by Ala

Re: [PATCH v5 1/3] create SMAF module

2015-10-21 Thread Benjamin Gaignard
2015-10-21 16:32 GMT+02:00 James Morris : > On Wed, 21 Oct 2015, Benjamin Gaignard wrote: > >> 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 hel

Re: [PATCH v5 0/3] RFC: Secure Memory Allocation Framework

2015-10-21 Thread James Morris
On Wed, 21 Oct 2015, Benjamin Gaignard wrote: > > The outcome of the previous RFC about how do secure data path was the need > of a secure memory allocator (https://lkml.org/lkml/2015/5/5/551) > Have you addressed all the questions raised by Alan here: https://lkml.org/lkml/2015/5/8/629 Also,

Re: [PATCH v5 1/3] create SMAF module

2015-10-21 Thread James Morris
On Wed, 21 Oct 2015, Benjamin Gaignard wrote: > 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

Your Inheritance

2015-10-21 Thread
Hello, I wish to notify you that late Gianni Agnelli, had included you as beneficiary of his Will. He left the sum of sixty Million, Five Hundred Thousand Dollars (US$60, 500,000.00) to you in the Codicil and last testament to his Will. This may sound strange and unbelievable to you; you are ad

[PATCH v5 2/3] SMAF: add CMA allocator

2015-10-21 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 v5 1/3] create SMAF module

2015-10-21 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 v5 3/3] SMAF: add fake secure module

2015-10-21 Thread Benjamin Gaignard
This module is allow testing secure calls of SMAF. Signed-off-by: Benjamin Gaignard --- drivers/smaf/Kconfig | 6 +++ drivers/smaf/Makefile | 1 + drivers/smaf/smaf-fakesecure.c | 92 ++ 3 files changed, 99 insertions(+) create mode 1

[PATCH v5 0/3] RFC: Secure Memory Allocation Framework

2015-10-21 Thread Benjamin Gaignard
version 5 changes: - rebased on kernel 4.3-rc6 - rework locking schema and make handle status use an atomic_t - add a fake secure module to allow performing tests without trusted environment version 4 changes: - rebased on kernel 4.3-rc3 - fix missing EXPORT_SYMBOL for smaf_create_handle()