staging: comedi: amplc_pc236_common: replace comedi_board() calls
The `comedi_board(dev)` inline function calls just return `dev->board_ptr`. Expand the inline function calls. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b37e1d6eeb
commit
280f7a4c4f
@ -29,7 +29,7 @@
|
||||
|
||||
static void pc236_intr_update(struct comedi_device *dev, bool enable)
|
||||
{
|
||||
const struct pc236_board *thisboard = comedi_board(dev);
|
||||
const struct pc236_board *thisboard = dev->board_ptr;
|
||||
struct pc236_private *devpriv = dev->private;
|
||||
unsigned long flags;
|
||||
|
||||
@ -49,7 +49,7 @@ static void pc236_intr_update(struct comedi_device *dev, bool enable)
|
||||
*/
|
||||
static bool pc236_intr_check(struct comedi_device *dev)
|
||||
{
|
||||
const struct pc236_board *thisboard = comedi_board(dev);
|
||||
const struct pc236_board *thisboard = dev->board_ptr;
|
||||
struct pc236_private *devpriv = dev->private;
|
||||
bool retval = false;
|
||||
unsigned long flags;
|
||||
|
Loading…
Reference in New Issue
Block a user