All of lore.kernel.org
 help / color / mirror / Atom feed
* Compiler warning - overriding codec compress type
@ 2011-04-18  6:37 Patrick Lai
  2011-04-18  9:25 ` Clemens Ladisch
  2011-04-18 10:30 ` Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Patrick Lai @ 2011-04-18  6:37 UTC (permalink / raw)
  To: alsa-devel

Hi,

I got a compiler warning soc-core.c: In function 
'snd_soc_instantiate_cards' warning: 'compress_type' may be used 
uninitialized in this function. In reality, compress_type is defined as 
local variable in snd_soc_instantiate_card().

My kernel version is 2.6.38. Has the warning being addressed in 2.6.39 
or 2.6.40 patches? If not, after tracing through the code, I think the 
fix should look like the following:

list_for_each_entry(codec, &codec_list, list) {
                 if (codec->cache_init)
                         continue;
+               compress_type = 0;
                 /* check to see if we need to override the compress_type */
                 for (i = 0; i < card->num_configs; ++i) {
                         codec_conf = &card->codec_conf[i];

Please advise

Thanks
Patrick

-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-04-18 18:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-18  6:37 Compiler warning - overriding codec compress type Patrick Lai
2011-04-18  9:25 ` Clemens Ladisch
2011-04-18 10:30 ` Mark Brown
2011-04-18 18:53   ` Patrick Lai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.