9 Oct
                
                    2010
                
            
            
                9 Oct
                
                '10
                
            
            
            
        
    
                1:42 p.m.
            
        Hi Jaroslav,
sound/drivers/aloop.c +287 loopback_prepare(10) warn: bogus compare against zero: 'bps' 282 unsigned int bps, salign; 283 284 salign = (snd_pcm_format_width(runtime->format) * 285 runtime->channels) / 8; 286 bps = salign * runtime->rate; 287 if (bps <= 0 || salign <= 0) ^^^^^^^^^^^^^^^^^^^^^^^
Both "bps" and "salign" are unsigned and are never less than zero. Should this just be checking for == 0? Or was the check supposed to catch integer overflows?
288 return -EINVAL; 289
regards, dan carpenter