Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* Re: ALSA: firewire-lib: pass the number of data blocks in incoming packets to outgoing packets
@ 2015-05-26  8:49 Dan Carpenter
  2015-05-26 14:46 ` Takashi Sakamoto
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2015-05-26  8:49 UTC (permalink / raw)
  To: o-takashi; +Cc: alsa-devel

Hello Takashi Sakamoto,

The patch 6fc6b9ce41c6: "ALSA: firewire-lib: pass the number of data
blocks in incoming packets to outgoing packets" from May 22, 2015,
leads to the following static checker warning:

	sound/firewire/amdtp.c:857 in_stream_callback()
	warn: unsigned 'data_blocks' is never less than zero.

sound/firewire/amdtp.c
   855  
   856                  data_blocks = handle_in_packet(s, payload_quadlets, buffer);
   857                  if (data_blocks < 0) {
                            ^^^^^^^^^^^^^^^
Never true.  But handle_in_packet() does return negative error codes.

   858                          s->packet_index = -1;
   859                          break;
   860                  }
   861  

regards,
dan carpenter

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

end of thread, other threads:[~2015-05-26 14:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-26  8:49 ALSA: firewire-lib: pass the number of data blocks in incoming packets to outgoing packets Dan Carpenter
2015-05-26 14:46 ` Takashi Sakamoto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox