Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364111
b: refs/heads/master
c: b153c68
h: refs/heads/master
i:
  364109: 6fff79f
  364107: 5404332
  364103: edd52c2
  364095: 707dbb3
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Apr 11, 2013
1 parent 7ce62a1 commit 1cba4aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43535526367196d7dcf11f563b0e418b1efe00fd
refs/heads/master: b153c68dce2a213b964505757518405af1372498
7 changes: 1 addition & 6 deletions trunk/drivers/staging/comedi/drivers/icp_multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ Configuration options: not applicable, uses PCI auto config
#define ICP_MULTI_CNTR2 0x14 /* R/W: Counter 2 */
#define ICP_MULTI_CNTR3 0x16 /* R/W: Counter 3 */

#define ICP_MULTI_SIZE 0x20 /* 32 bytes */

/* Define bits from ADC command/status register */
#define ADC_ST 0x0001 /* Start ADC */
#define ADC_BSY 0x0001 /* ADC busy */
Expand Down Expand Up @@ -500,7 +498,6 @@ static int icp_multi_auto_attach(struct comedi_device *dev,
struct pci_dev *pcidev = comedi_to_pci_dev(dev);
struct icp_multi_private *devpriv;
struct comedi_subdevice *s;
resource_size_t iobase;
int ret;

devpriv = kzalloc(sizeof(*devpriv), GFP_KERNEL);
Expand All @@ -511,10 +508,8 @@ static int icp_multi_auto_attach(struct comedi_device *dev,
ret = comedi_pci_enable(dev);
if (ret)
return ret;
iobase = pci_resource_start(pcidev, 2);
dev->iobase = iobase;

devpriv->io_addr = ioremap(iobase, ICP_MULTI_SIZE);
devpriv->io_addr = pci_ioremap_bar(pcidev, 2);
if (!devpriv->io_addr)
return -ENOMEM;

Expand Down

0 comments on commit 1cba4aa

Please sign in to comment.