Re: [PATCH v1] [media] atmel-isi: code cleanup

2017-05-21 Thread Wu, Songjun
Hi Hugues, Thank you for your patch. Is it necessary to ensure ISI is clocked before starting sensor sub device? On 5/19/2017 20:08, Hugues FRUCHET wrote: Adding Songjun and Ludovic as Atmel maintainers, sorry for inconvenience. On 05/19/2017 12:04 PM, Hugues Fruchet wrote: Ensure that ISI

cron job: media_tree daily build: ERRORS

2017-05-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: Mon May 22 05:00:16 CEST 2017 media-tree git hash:36bcba973ad478042d1ffc6e89afd92e8bd17030 media_build

[PATCH 14/16] ASoC: blackfin: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The silence is performed only when CONFIG_SND_BF5XX_MMAP_SUPPORT is set (since copy_silence ops is set only with this config), so in bf5xx-ac97.c we have a bit tricky macro for a slight optimization. Note that we don't need to take

[PATCH 16/16] ALSA: pcm: Drop the old copy and silence ops

2017-05-21 Thread Takashi Iwai
Now that all users of old copy and silence ops have been converted to the new copy_silence ops, the old stuff can be retired and go away. Signed-off-by: Takashi Iwai --- include/sound/pcm.h | 5 - sound/core/pcm_lib.c | 38 +-

[PATCH 15/16] [media] solo6x10: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. It's a capture stream, thus no silence is needed. Signed-off-by: Takashi Iwai --- drivers/media/pci/solo6x10/solo6x10-g723.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git

[PATCH 01/16] ALSA: pcm: Introduce copy_silence PCM ops

2017-05-21 Thread Takashi Iwai
For supporting the explicit in-kernel copy of PCM buffer data, and also for reducing the redundant codes for both PCM copy and silence callbacks, a new ops copy_silence is introduced in this patch. This is supposed to serve for both copy and silence operations. The silence operation is

[PATCH 12/16] ALSA: sb: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. We could reduce the redundant silence code by that. Signed-off-by: Takashi Iwai --- sound/isa/sb/emu8000_pcm.c | 99 ++ 1 file changed, 30 insertions(+), 69 deletions(-)

[PATCH 04/16] ALSA: es1938: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. It's used only for a capture stream (for some hardware workaround), thus we need no silence operation but only to add the in_kernel memcpy() handling. Signed-off-by: Takashi Iwai --- sound/pci/es1938.c | 11 +++

[PATCH 10/16] ALSA: hdsp: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/pci/rme9652/hdsp.c | 44 1 file changed, 20 insertions(+), 24

[PATCH 02/16] ALSA: Update document about copy_silence PCM ops

2017-05-21 Thread Takashi Iwai
Signed-off-by: Takashi Iwai --- .../sound/kernel-api/writing-an-alsa-driver.rst| 110 - 1 file changed, 63 insertions(+), 47 deletions(-) diff --git a/Documentation/sound/kernel-api/writing-an-alsa-driver.rst

[PATCH 08/16] ALSA: rme96: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/pci/rme96.c | 52 ++-- 1 file changed, 26 insertions(+), 26

[PATCH 06/16] ALSA: nm256: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/pci/nm256/nm256.c | 35 ++- 1 file changed, 14 insertions(+), 21 deletions(-)

[PATCH 09/16] ALSA: rme9652: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/pci/rme9652/rme9652.c | 46 - 1 file changed, 20 insertions(+), 26

[PATCH 05/16] ALSA: korg1212: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The redundant function calls are reduced and the copy/silence are handled directly in callback functions now. Signed-off-by: Takashi Iwai --- sound/pci/korg1212/korg1212.c | 128

[PATCH 11/16] ALSA: gus: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/isa/gus/gus_pcm.c | 43 +-- 1 file changed, 9 insertions(+), 34

[PATCH 13/16] ALSA: sh: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. A straightforward conversion with standard helper functions. Signed-off-by: Takashi Iwai --- sound/sh/sh_dac_audio.c | 40 +--- 1 file changed, 9 insertions(+), 31 deletions(-) diff

[PATCH 07/16] ALSA: rme32: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
Replace the copy and the silence ops with the new merged ops. The conversion is straightforward with standard helper functions. Signed-off-by: Takashi Iwai --- sound/pci/rme32.c | 49 - 1 file changed, 24 insertions(+), 25

[PATCH 03/16] ALSA: dummy: Convert to copy_silence ops

2017-05-21 Thread Takashi Iwai
It's a dummy ops, so just replacing it. Signed-off-by: Takashi Iwai --- sound/drivers/dummy.c | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/sound/drivers/dummy.c b/sound/drivers/dummy.c index 172dacd925f5..68519689a9ea 100644 ---

[PATCH 00/16] ALSA: Convert to new copy_silence PCM ops

2017-05-21 Thread Takashi Iwai
Hi, this is a part of the previous RFC patchset, and it's preliminary for eliminating set_fs() usages in the rest ALSA codes. This patchset itself converts the existing copy and silence PCM ops to a new single copy_silence ops. The new callback takes in_kernel flag for allowing in-kernel buffer

Working with you | 2m

2017-05-21 Thread VS - .52
Hello and good day. I am looking to work with a reputable individual/firm to engage in a profit oriented ventures in your country and perhaps with your assistance, we could get low tax rates. I have the directive of Mr. Mikhail Khodorkovsky to source for partner abroad who can accommodate and

[patch, libv4l]: add sdlcam example for testing digital still camera functionality

2017-05-21 Thread Pavel Machek
Add simple SDL-based application for capturing photos. Manual focus/gain/exposure can be set, flash can be controlled and autofocus/autogain can be selected if camera supports that. It is already useful for testing autofocus/autogain improvements to the libraries on Nokia N900. Signed-off-by:

Re: [PATCH 03/16] lirc_dev: correct error handling

2017-05-21 Thread Sean Young
On Mon, May 01, 2017 at 06:03:51PM +0200, David Härdeman wrote: > If an error is generated, nonseekable_open() shouldn't be called. There is no harm in calling nonseekable_open(), so this commit is misleading. Sean > > Signed-off-by: David Härdeman > --- >

Re: [PATCH] rc-core: cleanup rc_register_device (v2)

2017-05-21 Thread Sean Young
On Sun, May 21, 2017 at 08:45:09AM +0200, David Härdeman wrote: > On Sat, May 20, 2017 at 12:10:40PM +0100, Sean Young wrote: > >On Wed, May 03, 2017 at 12:04:00PM +0200, David Härdeman wrote: > >> The device core infrastructure is based on the presumption that > >> once a driver calls

Re: [PATCH 14/16] lirc_dev: cleanup includes

2017-05-21 Thread David Härdeman
On Fri, May 19, 2017 at 07:21:23PM +0100, Sean Young wrote: >On Mon, May 01, 2017 at 06:04:47PM +0200, David Härdeman wrote: >> Remove superfluous includes and defines. >> >> Signed-off-by: David Härdeman >> --- >> drivers/media/rc/lirc_dev.c | 12 +--- >> 1 file

Re: [PATCH] rc-core: cleanup rc_register_device (v2)

2017-05-21 Thread David Härdeman
On Sat, May 20, 2017 at 12:10:40PM +0100, Sean Young wrote: >On Wed, May 03, 2017 at 12:04:00PM +0200, David Härdeman wrote: >> The device core infrastructure is based on the presumption that >> once a driver calls device_add(), it must be ready to accept >> userspace interaction. >> >> This