Skip to content

Commit

Permalink
staging: comedi: jr3_pci: fix iomem dereference
Browse files Browse the repository at this point in the history
Correct a direct dereference of I/O memory to use an appropriate I/O
memory access function.  Note that the pointer being dereferenced is not
currently tagged with `__iomem` but I plan to correct that for 3.7.

Cc: stable <stable@vger.kernel.org>
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 27, 2012
1 parent 27020ff commit e187895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/comedi/drivers/jr3_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ static int jr3_pci_attach(struct comedi_device *dev,
}

/* Reset DSP card */
devpriv->iobase->channel[0].reset = 0;
writel(0, &devpriv->iobase->channel[0].reset);

result = comedi_load_firmware(dev, "jr3pci.idm", jr3_download_firmware);
dev_dbg(dev->class_dev, "Firmare load %d\n", result);
Expand Down

0 comments on commit e187895

Please sign in to comment.