Re: Migrate from soc_camera to v4l2

2011-07-13 Thread Guennadi Liakhovetski
On Wed, 13 Jul 2011, LBM wrote: my dear Guennadi I'm wrong about that v4l2-int-device,maybe it just V4L2. Now i have a board of OMAP3530 and a cmos camera MT9M111,so i want to get the image from the mt9m111. and ,I want to use the V4L2 API. But in the linux kernel 2.6.38,the

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Ming Lei
Hi, On Tue, Jul 12, 2011 at 11:44 PM, Alan Stern st...@rowland.harvard.edu wrote: On Tue, 12 Jul 2011, Ming Lei wrote: Hi Laurent, After resume from sleep,  all the ISO packets from camera are like below: 880122d9f400 3527230728 S Zi:1:004:1 -115:1:2568 32 -18:0:1600 -18:1600:1600

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Ming Lei
Hi, On Tue, Jul 12, 2011 at 11:44 PM, Alan Stern st...@rowland.harvard.edu wrote: Maybe this device needs a USB_QUIRK_RESET_RESUME entry in quirks.c. RESET_RESUME quirk makes things worse, now stream data is not received from the camera at all even in resume from runtime suspend case. So the

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Laurent Pinchart
On Tuesday 12 July 2011 03:21:05 Ming Lei wrote: On Mon, Jul 11, 2011 at 6:44 PM, Laurent Pinchart wrote: That's unfortunately not acceptable as-is. If two cameras are connected to the system, and only one of them doesn't support suspend/resume, the other will be affected by your patch.

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Ming Lei
Hi, On Wed, Jul 13, 2011 at 4:38 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: They can still work, but not optimally, as they will be reset instead of suspended/resumed. That's not acceptable. If the reset you mentioned is usb bus reset signal, I think unbindbind will not

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Oliver Neukum
Am Mittwoch, 13. Juli 2011, 10:51:11 schrieb Ming Lei: Hi, On Wed, Jul 13, 2011 at 4:38 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: They can still work, but not optimally, as they will be reset instead of suspended/resumed. That's not acceptable. If the reset you

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Laurent Pinchart
On Wednesday 13 July 2011 10:51:11 Ming Lei wrote: On Wed, Jul 13, 2011 at 4:38 PM, Laurent Pinchart wrote: They can still work, but not optimally, as they will be reset instead of suspended/resumed. That's not acceptable. If the reset you mentioned is usb bus reset signal, I think

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Ming Lei
Hi, On Wed, Jul 13, 2011 at 4:59 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Sorry, I haven't been clear. If you remove the suspend/resume handlers from the driver, the USB core will unbind and rebind the driver instead of suspending/resuming the device properly. As this

[RFCv1 PATCH 0/6] Don't start streaming unless requested by the poll mask.

2011-07-13 Thread Hans Verkuil
The patch adding core support for poll_requested_events() looks ready for v3.1, so this patch series builds on it to fix the vivi and ivtv drivers. It also uses it in videobuf. I think it makes sense to add it there as well, even though no videobuf-drivers use events (yet). If there are no

[RFCv1 PATCH 1/6] poll: add poll_requested_events() function

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com In some cases the poll() implementation in a driver has to do different things depending on the events the caller wants to poll for. An example is when a driver needs to start a DMA engine if the caller polls for POLLIN, but doesn't want to do that if

[RFCv1 PATCH 3/6] videobuf2: only start streaming in poll() if so requested by the poll mask.

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/videobuf2-core.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/videobuf2-core.c b/drivers/media/video/videobuf2-core.c index

[RFCv1 PATCH 2/6] ivtv: only start streaming in poll() if polling for input.

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/ivtv/ivtv-fileops.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/ivtv/ivtv-fileops.c

[RFCv1 PATCH 4/6] videobuf: only start streaming in poll() if so requested by the poll mask.

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/videobuf-core.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/videobuf-core.c b/drivers/media/video/videobuf-core.c index

[RFCv1 PATCH 6/6] vivi: let vb2_poll handle events.

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The vb2_poll function now tests for events and sets POLLPRI accordingly. So there it is no longer necessary to test for it in the vivi driver. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/vivi.c |9 + 1 files

[RFCv1 PATCH 5/6] videobuf2-core: also test for pending events.

2011-07-13 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/videobuf2-core.c | 41 +++-- 1 files changed, 28 insertions(+), 13 deletions(-) diff --git a/drivers/media/video/videobuf2-core.c

Re: [PATCH] add support for the dvb-t part of CT-3650 v2

2011-07-13 Thread Mauro Carvalho Chehab
Em 06-07-2011 19:57, Jose Alberto Reguero escreveu: This patch add suport for the dvb-t part of CT-3650. Jose Alberto Signed-off-by: Jose Alberto Reguero jaregu...@telefonica.net patches/lmml_951522_add_support_for_the_dvb_t_part_of_ct_3650_v2.patch Content-Type: text/plain;

subscription request

2011-07-13 Thread D. R.
Hi all, please subscribe me to your email list Kind Regards David Rehle -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: subscription request

2011-07-13 Thread Uwe Kleine-König
Hi David, On Wed, Jul 13, 2011 at 03:08:02PM +0200, D. R. wrote: please subscribe me to your email list Kind Regards David Rehle -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at

USB DVR BOX - name AXD USB04V2A-T

2011-07-13 Thread Dariusz Siedlecki
Ubuntu 11.04 siedar@haven:~$ uname -a Linux haven 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:05:41 UTC 2011 i686 i686 i386 GNU/Linux This card have 4xVideo, 2xaudio, 25cl/s H.264 Is not recognized by system. Darek [12033.092138] usb 1-3: new high speed USB device using ehci_hcd and

Re: [PATCH] [media] tea5764: Fix module parameter permissions

2011-07-13 Thread Mauro Carvalho Chehab
Em 11-07-2011 09:25, Fabio Belavenuto escreveu: Hi, I'm the author. Sorry for my bad english, I'm from Brazil. :D Yes, the intent of the 1 is to set the default value, in case compile built-in. I like the module to be generic, decided to choose enabled by default. Fábio 2011/7/11

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Alan Stern
On Wed, 13 Jul 2011, Ming Lei wrote: Hi, On Tue, Jul 12, 2011 at 11:44 PM, Alan Stern st...@rowland.harvard.edu wrote: On Tue, 12 Jul 2011, Ming Lei wrote: Hi Laurent, After resume from sleep, �all the ISO packets from camera are like below: 880122d9f400 3527230728 S

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Ming Lei
Hi, On Wed, Jul 13, 2011 at 11:20 PM, Alan Stern st...@rowland.harvard.edu wrote: Why should system suspend be different from runtime suspend?  Have you This is also my puzzle, :-) compared usbmon traces for the two types of suspend? Almost same. If I add USB_QUIRK_RESET_RESUME quirk for

Re: [PATCH] uvcvideo: add fix suspend/resume quirk for Microdia camera

2011-07-13 Thread Alan Stern
On Wed, 13 Jul 2011, Ming Lei wrote: Hi, On Wed, Jul 13, 2011 at 11:20 PM, Alan Stern st...@rowland.harvard.edu wrote: Why should system suspend be different from runtime suspend? �Have you This is also my puzzle, :-) compared usbmon traces for the two types of suspend? Almost

[cron job] v4l-dvb daily build: ERRORS

2011-07-13 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Wed Jul 13 19:00:39 CEST 2011 git hash:b0ee37889c11650f3df3417f3887f0a49b5fda5c gcc version: i686-linux-gcc (GCC)

[RFC v1] mt9v113: VGA camera sensor driver and support for BeagleBoard

2011-07-13 Thread Joel A Fernandes
* Adds support for mt9v113 sensor by borrowing heavily from PSP 2.6.37 kernel patches * Adapted to changes in v4l2 framework and ISP driver Signed-off-by: Joel A Fernandes agnel.j...@gmail.com --- This patch will apply against the 2.6.39 kernel built from the OE-development tree (Which is

Re: [RFC PATCH 1/8] davinci: vpfe: add dm3xx IPIPEIF hardware support module

2011-07-13 Thread Sakari Ailus
Hi Manju, Thanks for the patchset! I have a few comments on this patch below. I haven't read the rest of the patches yet so I may have more comments on this one when I do that. On Thu, Jun 30, 2011 at 06:43:10PM +0530, Manjunath Hadli wrote: add support for dm3xx IPIPEIF hardware setup. This

Re: [PATCH 2/3] Document 8-bit and 16-bit YCrCb media bus pixel codes

2011-07-13 Thread Christian Gmeiner
2011/7/11 Christian Gmeiner christian.gmei...@gmail.com: Hi Laurent, 2011/7/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: Hi Christian, On Sunday 10 July 2011 20:14:21 Christian Gmeiner wrote: Signed-off-by: Christian Gmeiner --- diff --git

Re: Gigabyte 8300

2011-07-13 Thread Kamil Kaminski
Devin Heitmueller dheitmueller at kernellabs.com writes: On Fri, Sep 3, 2010 at 12:01 PM, Andy Walls awalls at md.metrocast.net wrote: On Fri, 2010-09-03 at 10:55 +, Dagur Ammendrup wrote: I tried it on a windows machine where it's identified as Conextant Polaris Video Capture  or

Re: [patch][saa7134] do not change mute state for capturing audio

2011-07-13 Thread Mauro Carvalho Chehab
Em 10-07-2011 13:27, Stas Sergeev escreveu: Hi. When pulseaudio enables the audio capturing, the driver unmutes the sound. But, if no app have properly tuned the tuner yet, you get the white noise. I think the capturing must not touch the mute state, because, without tuning the tuner

[PATCH] [media] rc-rc6-mce: minor keymap updates

2011-07-13 Thread Jarod Wilson
Microsoft's Windows Media Center specification and requirements doc from 2011.03.18 now refers to the former Power Toggle button as the Sleep Toggle, and recommends using a new moon sleep icon for it. Its the same key, but its apparently always been meant to put the system to sleep, not power it

[PATCH] media, Micronas dvb-t: Fix mem leaks, don't needlessly zero mem, fix spelling

2011-07-13 Thread Jesper Juhl
In drivers/media/dvb/frontends/drxd_hard.c::load_firmware() I see 3 small issues: 1) When the 'fw' variable goes out of scope we'll leak the memory allocated to it by request_firmware() by neglecting to call release_firmware(). 2) After a successful request_firmware() we allocate fw-size

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Mauro Carvalho Chehab
Em 10-07-2011 16:51, Randy Dunlap escreveu: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to stringify.h so that drivers can convert kconfig hex values (without leading 0x) to useful hex constants. Several drivers/media/radio/ drivers need this. I haven't checked if any

[PATCH v2] [media] rc-core support for Microsoft IR keyboard/mouse

2011-07-13 Thread Jarod Wilson
This is a custom IR protocol decoder, for the RC-6-ish protocol used by the Microsoft Remote Keyboard, apparently developed internally at Microsoft, and officially dubbed MCIR-2, per their March 2011 remote and transceiver requirements and specifications document, which also touches on this IR

Re: [patch][saa7134] do not change mute state for capturing audio

2011-07-13 Thread Stas Sergeev
14.07.2011 00:53, Mauro Carvalho Chehab wrote: When pulseaudio enables the audio capturing, the driver unmutes the sound. But, if no app have properly tuned the tuner yet, you get the white noise. I think the capturing must not touch the mute state, because, without tuning the tuner first, you

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Randy Dunlap
On Wed, 13 Jul 2011 18:05:45 -0300 Mauro Carvalho Chehab wrote: Em 10-07-2011 16:51, Randy Dunlap escreveu: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to stringify.h so that drivers can convert kconfig hex values (without leading 0x) to useful hex constants.

[PATCH 0/3] redrat3 driver updates for 3.1

2011-07-13 Thread Jarod Wilson
These changes make the redrat3 driver cooperate better with both in-kernel and lirc userspace decoding of signals, tested with RC5, RC6 and NEC. There's probably more we can do to make this a bit less hackish, but its working quite well here for me right now. Jarod Wilson (3): [media] redrat3:

[PATCH 1/3] [media] redrat3: sending extra trailing space was useless

2011-07-13 Thread Jarod Wilson
We already add a trailing space, this wasn't doing anything useful, and actually confused lirc userspace a bit. Rip it out. CC: Chris Dodge ch...@redrat.co.uk CC: Andrew Vincer andrew.vin...@redrat.co.uk CC: Stephen Cox scox...@yahoo.com Signed-off-by: Jarod Wilson ja...@redhat.com ---

[PATCH 2/3] [media] redrat3: cap duration in the right place

2011-07-13 Thread Jarod Wilson
Trying to cap duration before multiplying it was obviously wrong. CC: Chris Dodge ch...@redrat.co.uk CC: Andrew Vincer andrew.vin...@redrat.co.uk CC: Stephen Cox scox...@yahoo.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/redrat3.c |6 +++--- 1 files changed, 3

[PATCH 3/3] [media] redrat3: improve compat with lirc userspace decode

2011-07-13 Thread Jarod Wilson
This is admittedly a bit of a hack, but if we change our timeout value to something longer and fudge our synthesized trailing space sample based on the initial pulse sample, rc-core decode continues to work just fine with both rc-6 and rc-5, and now lirc userspace decode shows proper repeats for

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Arnaud Lacombe
Hi, On Sun, Jul 10, 2011 at 3:51 PM, Randy Dunlap rdun...@xenotime.net wrote: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to stringify.h so that drivers can convert kconfig hex values (without leading 0x) to useful hex constants. Several drivers/media/radio/ drivers need

[PATCH] [media] imon: rate-limit send_packet spew

2011-07-13 Thread Jarod Wilson
There are folks with flaky imon hardware out there that doesn't always respond to requests to write to their displays for some reason, which can flood logs quickly when something like lcdproc is trying to constantly update the display, so lets rate-limit all that error spew. Signed-off-by: Jarod

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Randy Dunlap
On Wed, 13 Jul 2011 17:49:48 -0400 Arnaud Lacombe wrote: Hi, On Sun, Jul 10, 2011 at 3:51 PM, Randy Dunlap rdun...@xenotime.net wrote: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to stringify.h so that drivers can convert kconfig hex values (without leading 0x) to

Re: [patch][saa7134] do not change mute state for capturing audio

2011-07-13 Thread Mauro Carvalho Chehab
Em 13-07-2011 18:11, Stas Sergeev escreveu: 14.07.2011 00:53, Mauro Carvalho Chehab wrote: When pulseaudio enables the audio capturing, the driver unmutes the sound. But, if no app have properly tuned the tuner yet, you get the white noise. I think the capturing must not touch the mute state,

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Randy Dunlap
On Wed, 13 Jul 2011 18:05:45 -0300 Mauro Carvalho Chehab wrote: Em 10-07-2011 16:51, Randy Dunlap escreveu: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to stringify.h so that drivers can convert kconfig hex values (without leading 0x) to useful hex constants.

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Arnaud Lacombe
Hi, On Wed, Jul 13, 2011 at 6:00 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13 Jul 2011 17:49:48 -0400 Arnaud Lacombe wrote: Hi, On Sun, Jul 10, 2011 at 3:51 PM, Randy Dunlap rdun...@xenotime.net wrote: From: Randy Dunlap rdun...@xenotime.net Add HEX_STRING(value) to

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Randy Dunlap
On Wed, 13 Jul 2011 18:06:15 -0400 Arnaud Lacombe wrote: Hi, On Wed, Jul 13, 2011 at 6:00 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13 Jul 2011 17:49:48 -0400 Arnaud Lacombe wrote: Hi, On Sun, Jul 10, 2011 at 3:51 PM, Randy Dunlap rdun...@xenotime.net wrote: From:

Re: Imon module Oops and kernel hang

2011-07-13 Thread Jarod Wilson
On Jul 13, 2011, at 1:42 AM, Chris W wrote: On 13/07/11 14:20, Jarod Wilson wrote: Chris W wrote: The rc keymap modules have been built (en masse as a result of CONFIG_RC_MAP=m) but I am not explicitly loading them and they do not get automatically loaded. Huh. That's unexpected. They

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Arnaud Lacombe
Hi, On Wed, Jul 13, 2011 at 6:08 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13 Jul 2011 18:06:15 -0400 Arnaud Lacombe wrote: Hi, On Wed, Jul 13, 2011 at 6:00 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13 Jul 2011 17:49:48 -0400 Arnaud Lacombe wrote: Hi, On Sun,

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Randy Dunlap
On Wed, 13 Jul 2011 18:13:31 -0400 Arnaud Lacombe wrote: Hi, On Wed, Jul 13, 2011 at 6:08 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13 Jul 2011 18:06:15 -0400 Arnaud Lacombe wrote: Hi, On Wed, Jul 13, 2011 at 6:00 PM, Randy Dunlap rdun...@xenotime.net wrote: On Wed, 13

Re: [RFC v1] mt9v113: VGA camera sensor driver and support for BeagleBoard

2011-07-13 Thread Laurent Pinchart
Hi Joel, On Wednesday 13 July 2011 20:22:27 Joel A Fernandes wrote: * Adds support for mt9v113 sensor by borrowing heavily from PSP 2.6.37 kernel patches * Adapted to changes in v4l2 framework and ISP driver Here are a few comments about the code. I've left political issues aside on purpose.

Re: [PATCH] pctv452e.c: switch rc handling to rc.core

2011-07-13 Thread Mauro Carvalho Chehab
Em 25-06-2011 16:34, Juergen Lock escreveu: This is on top of the submitted pctv452e.c driver and was done similar to how ttusb2 works. Tested with lirc (devinput) and ir-keytable(1). You should submit pctv452e driver first, otherwise I can't apply this one ;) Regards, Mauro

Re: [RFC PATCH] capture-example: allow V4L2_PIX_FMT_GREY with USERPTR

2011-07-13 Thread Mauro Carvalho Chehab
Em 28-06-2011 11:23, Michael Jones escreveu: There is an assumption that the format coming from the device needs 2 bytes per pixel, which is not the case when the device delivers e.g. V4L2_PIX_FMT_GREY. This doesn't manifest itself with IO_METHOD_MMAP because init_mmap() (the default) doesn't

Re: 2.6.39 tuner-core: remove usage of DIGITAL_TV breaks saa7134 with mt2050

2011-07-13 Thread Simon Arlott
On 13/07/11 05:23, Mauro Carvalho Chehab wrote: Em 12-07-2011 18:21, Simon Arlott escreveu: commit ad020dc2fe9039628cf6cef42cd1b76531ee8411 Author: Mauro Carvalho Chehab mche...@redhat.com Date: Tue Feb 15 09:30:50 2011 -0200 [media] tuner-core: remove usage of DIGITAL_TV This

Re: [PATCH] pctv452e.c: switch rc handling to rc.core

2011-07-13 Thread Juergen Lock
On Wed, Jul 13, 2011 at 07:31:03PM -0300, Mauro Carvalho Chehab wrote: Em 25-06-2011 16:34, Juergen Lock escreveu: This is on top of the submitted pctv452e.c driver and was done similar to how ttusb2 works. Tested with lirc (devinput) and ir-keytable(1). You should submit pctv452e driver

Re: [PATCH 0/3] redrat3 driver updates for 3.1

2011-07-13 Thread Mauro Carvalho Chehab
Em 13-07-2011 18:26, Jarod Wilson escreveu: These changes make the redrat3 driver cooperate better with both in-kernel and lirc userspace decoding of signals, tested with RC5, RC6 and NEC. There's probably more we can do to make this a bit less hackish, but its working quite well here for me

Re: [git:v4l-dvb/for_v3.1] [media] DVB: dvb_frontend: off by one in dtv_property_dump()

2011-07-13 Thread Andreas Oberritter
On 13.07.2011 23:28, Mauro Carvalho Chehab wrote: This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree: Subject: [media] DVB: dvb_frontend: off by one in dtv_property_dump() Author: Dan Carpenter

Re: [beagleboard] [RFC v1] mt9v113: VGA camera sensor driver and support for BeagleBoard

2011-07-13 Thread Joel A Fernandes
Hi Vaibhav, Thanks for your email. On Wed, Jul 13, 2011 at 2:55 PM, Hiremath, Vaibhav hvaib...@ti.com wrote: -Original Message- From: beaglebo...@googlegroups.com [mailto:beaglebo...@googlegroups.com] On Behalf Of Joel A Fernandes Sent: Wednesday, July 13, 2011 11:52 PM To:

Re: Imon module Oops and kernel hang

2011-07-13 Thread Chris W
On 14/07/11 08:11, Jarod Wilson wrote: On Jul 13, 2011, at 1:42 AM, Chris W wrote: Just noticed your report is for 2.6.39.x and 2.6.38.x only, but I'm not aware of any relevant imon changes between 2.6.39 and 3.0. I just tried 3.0.0-rc7 with the same result (used defaults for new config items.

Re: [PATCH 1/9] stringify: add HEX_STRING()

2011-07-13 Thread Arnaud Lacombe
Hi, On Wed, Jul 13, 2011 at 6:17 PM, Randy Dunlap rdun...@xenotime.net wrote: [...] Sure, go for it.  I'll ack it.  ;)  [or Review it :] and test it. it is already among the hunks in https://patchwork.kernel.org/patch/380601/ I realize that, but it looks like you may need to resubmit

Re: [patch][saa7134] do not change mute state for capturing audio

2011-07-13 Thread Stas Sergeev
14.07.2011 02:00, Mauro Carvalho Chehab wrote: Now that we don't have the output mute switch, we allow the alsa driver to unmute not only the recording that it may need, but also the sound output that goes to the sound card! IMHO, this is the entirely unwanted side effect, so I blame the saa