All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fengguang Wu <fengguang.wu@intel.com>
To: kernel-janitors@vger.kernel.org
Subject: [staging:staging-next 253/267] drivers/staging/comedi/drivers/s626.c:2516 s626_attach_pci() warn:
Date: Thu, 27 Sep 2012 01:11:22 +0000	[thread overview]
Message-ID: <20120927011122.GC7205@localhost> (raw)

Hi H,

FYI, there are new smatch warnings show up in

tree:   git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git staging-next
head:   3cd73bc1cf59b2c9232d9889ba2b148e262054b6
commit: 8c7e4277c1197d31c0b34dbaf23e6edddb5978f7 [253/267] staging: comedi: s626: cleanup request_irq in s626_attach_pci()

  drivers/staging/comedi/drivers/s626.c:1428 s626_ai_cmd() Error invalid range 4096 to -1
  drivers/staging/comedi/drivers/s626.c:1448 s626_ai_cmd() Error invalid range 4096 to -1
  drivers/staging/comedi/drivers/s626.c:1649 s626_ai_cmdtest() Error invalid range 4096 to -1
  drivers/staging/comedi/drivers/s626.c:1656 s626_ai_cmdtest() Error invalid range 4096 to -1
  drivers/staging/comedi/drivers/s626.c:2504 s626_attach_pci() warn: '(dev->private)->base_addr' was not released on error
  drivers/staging/comedi/drivers/s626.c:2516 s626_attach_pci() warn: '(dev->private)->base_addr' was not released on error
+ drivers/staging/comedi/drivers/s626.c:2516 s626_attach_pci() warn: 'pcidev->irq' was not released on error

vim +2516 drivers/staging/comedi/drivers/s626.c
  2500		/* DMA FIXME DMA// */
  2501	
  2502		ret = s626_allocate_dma_buffers(dev);
  2503		if (ret)
  2504			return ret;
  2505	
  2506		if (pcidev->irq) {
  2507			ret = request_irq(pcidev->irq, s626_irq_handler, IRQF_SHARED,
  2508					  dev->board_name, dev);
  2509	
  2510			if (ret = 0)
  2511				dev->irq = pcidev->irq;
  2512		}
  2513	
  2514		ret = comedi_alloc_subdevices(dev, 6);
  2515		if (ret)
> 2516			return ret;
  2517	
  2518		s = dev->subdevices + 0;
  2519		/* analog input subdevice */
  2520		dev->read_subdev = s;
  2521		/* we support single-ended (ground) and differential */
  2522		s->type = COMEDI_SUBD_AI;
  2523		s->subdev_flags = SDF_READABLE | SDF_DIFF | SDF_CMD_READ;
  2524		s->n_chan = S626_ADC_CHANNELS;

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

             reply	other threads:[~2012-09-27  1:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-27  1:11 Fengguang Wu [this message]
2012-09-27  5:00 ` [staging:staging-next 253/267] drivers/staging/comedi/drivers/s626.c:2516 s626_attach_pci() warn H Hartley Sweeten
2012-09-27  5:18 ` Fengguang Wu
2012-09-27  7:27 ` Dan Carpenter
2012-09-27  7:38 ` Fengguang Wu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120927011122.GC7205@localhost \
    --to=fengguang.wu@intel.com \
    --cc=kernel-janitors@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.