Commit 8cafadee authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: pcl816: use __comedi_request_region()

Use __comedi_request_region() to request the additional I/O region
used by this driver.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5950ae51
...@@ -1038,8 +1038,9 @@ static int pcl816_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -1038,8 +1038,9 @@ static int pcl816_attach(struct comedi_device *dev, struct comedi_devconfig *it)
devpriv->dma_rtc = 0; devpriv->dma_rtc = 0;
if (it->options[2] > 0) { /* we want to use DMA */ if (it->options[2] > 0) { /* we want to use DMA */
if (RTC_lock == 0) { if (RTC_lock == 0) {
if (!request_region(RTC_PORT(0), RTC_IO_EXTENT, ret = __comedi_request_region(dev, RTC_PORT(0),
"pcl816 (RTC)")) RTC_IO_EXTENT);
if (ret)
goto no_rtc; goto no_rtc;
} }
devpriv->rtc_iobase = RTC_PORT(0); devpriv->rtc_iobase = RTC_PORT(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment