Re: [PATCH] tlg2300: fix missing check for audio creation

2012-09-23 Thread Mauro Carvalho Chehab
Hi Alan,

Em 04-09-2012 11:43, Alan Cox escreveu:
 From: Alan Cox a...@linux.intel.com
 
 If we fail to set up the capture device we go through negative indexes and
 badness happens. Add the missing test.
 
 Resolves-bug: https://bugzilla.kernel.org/show_bug.cgi?id=44551
 Signed-off-by: Alan Cox a...@linux.intel.com
 ---
 
  drivers/media/usb/tlg2300/pd-alsa.c |4 
  1 file changed, 4 insertions(+)
 
 diff --git a/drivers/media/usb/tlg2300/pd-alsa.c 
 b/drivers/media/usb/tlg2300/pd-alsa.c
 index 9f8b7da..0c77869 100644
 --- a/drivers/media/usb/tlg2300/pd-alsa.c
 +++ b/drivers/media/usb/tlg2300/pd-alsa.c
 @@ -305,6 +305,10 @@ int poseidon_audio_init(struct poseidon *p)
   return ret;
  
   ret = snd_pcm_new(card, poseidon audio, 0, 0, 1, pcm);
 + if (ret  0) {
 + snd_free_card(card);

That patch broke compilation:

  CC  drivers/media/usb/tlg2300/pd-alsa.o
drivers/media/usb/tlg2300/pd-alsa.c: In function 'poseidon_audio_init':
drivers/media/usb/tlg2300/pd-alsa.c:309:3: error: implicit declaration of 
function 'snd_free_card' [-Werror=implicit-function-declaration]

This change fixed it:
-   snd_free_card(card);
+   snd_card_free(card);

Not sure if this is a typo, or if it is due to some function rename
that might be happening at alsa subsystem and you might be noticed
at -next. In any case, I had to apply a patch on my tree fixing it.

PS: I noticed the compilation breakage too late to merge the fix together
with your patch - my background compilation process was supposed to
not only print a warning message in red, but also to bug me at the 
speakers - due to Murphy laws, everything got wrong: the screen
was overlapped by another one; my speakers were muted).

Still, I can swap the patch order for the patches I didn't sent
upstream yet, in order to put the fixup patch just after yours.

Regards,
Mauro

--
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


[PATCH] tlg2300: fix missing check for audio creation

2012-09-04 Thread Alan Cox
From: Alan Cox a...@linux.intel.com

If we fail to set up the capture device we go through negative indexes and
badness happens. Add the missing test.

Resolves-bug: https://bugzilla.kernel.org/show_bug.cgi?id=44551
Signed-off-by: Alan Cox a...@linux.intel.com
---

 drivers/media/usb/tlg2300/pd-alsa.c |4 
 1 file changed, 4 insertions(+)

diff --git a/drivers/media/usb/tlg2300/pd-alsa.c 
b/drivers/media/usb/tlg2300/pd-alsa.c
index 9f8b7da..0c77869 100644
--- a/drivers/media/usb/tlg2300/pd-alsa.c
+++ b/drivers/media/usb/tlg2300/pd-alsa.c
@@ -305,6 +305,10 @@ int poseidon_audio_init(struct poseidon *p)
return ret;
 
ret = snd_pcm_new(card, poseidon audio, 0, 0, 1, pcm);
+   if (ret  0) {
+   snd_free_card(card);
+   return ret;
+   }
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, pcm_capture_ops);
pcm-info_flags   = 0;
pcm-private_data = p;

--
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