public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* drivers/media/rc/iguanair.c:276 iguanair_receiver() error: doing dma on the stack ((null))
@ 2012-09-26 17:01 Fengguang Wu
  2012-09-27  8:58 ` Sean Young
  0 siblings, 1 reply; 2+ messages in thread
From: Fengguang Wu @ 2012-09-26 17:01 UTC (permalink / raw)
  To: kernel-janitors

Hi Sean,

FYI, there are new smatch warnings show up in

tree:   git://git.infradead.org/users/kmpark/linux-samsung commit-list
commit: 26ff63137c45886169ed102bddd6e90d6c27f00d [media] Add support for the IguanaWorks USB IR Transceiver

  drivers/media/rc/iguanair.c:211 iguanair_get_features() error: doing dma on the stack ((null))
  drivers/media/rc/iguanair.c:230 iguanair_get_features() error: doing dma on the stack ((null))
  drivers/media/rc/iguanair.c:249 iguanair_get_features() error: doing dma on the stack ((null))
+ drivers/media/rc/iguanair.c:276 iguanair_receiver() error: doing dma on the stack ((null))

vim +276 drivers/media/rc/iguanair.c
   260	
   261		if (len > 5 && ir->version[0] >= 4)
   262			ir->cycle_overhead = response.data[1];
   263	
   264	out:
   265		return rc;
   266	}
   267	
   268	static int iguanair_receiver(struct iguanair *ir, bool enable)
   269	{
   270		struct packet packet = { 0, DIR_OUT, enable ?
   271					CMD_RECEIVER_ON : CMD_RECEIVER_OFF };
   272		int rc;
   273	
   274		INIT_COMPLETION(ir->completion);
   275	
 > 276		rc = iguanair_send(ir, &packet, sizeof(packet), NULL, NULL);
   277		if (rc)
   278			return rc;
   279	
   280		wait_for_completion_timeout(&ir->completion, TIMEOUT);
   281	
   282		return 0;
   283	}
   284	

---
0-DAY kernel build testing backend         Open Source Technology Centre
Fengguang Wu, Yuanhan Liu                              Intel Corporation

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

end of thread, other threads:[~2012-09-27  8:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-26 17:01 drivers/media/rc/iguanair.c:276 iguanair_receiver() error: doing dma on the stack ((null)) Fengguang Wu
2012-09-27  8:58 ` Sean Young

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