Commit 1d57261c authored by Christian Engelmayer's avatar Christian Engelmayer Committed by Greg Kroah-Hartman

staging: comedi: remove duplicate pointer assignments in attach functions

Some board pointer are assigned twice via comedi_board() in the comedi low
level driver attach functions. Remove the duplicate assignment from the
variable definition where the pointer is not used anyway until assigned later
in the function when dev->board_ptr, that comedi_board() relies on, is setup
correctly.
Signed-off-by: default avatarChristian Engelmayer <cengelma@gmx.at>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c1bc97f8
...@@ -1479,7 +1479,7 @@ static int das1800_probe(struct comedi_device *dev) ...@@ -1479,7 +1479,7 @@ static int das1800_probe(struct comedi_device *dev)
static int das1800_attach(struct comedi_device *dev, static int das1800_attach(struct comedi_device *dev,
struct comedi_devconfig *it) struct comedi_devconfig *it)
{ {
const struct das1800_board *thisboard = comedi_board(dev); const struct das1800_board *thisboard;
struct das1800_private *devpriv; struct das1800_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned int irq = it->options[1]; unsigned int irq = it->options[1];
......
...@@ -683,7 +683,7 @@ static int das800_probe(struct comedi_device *dev) ...@@ -683,7 +683,7 @@ static int das800_probe(struct comedi_device *dev)
static int das800_attach(struct comedi_device *dev, struct comedi_devconfig *it) static int das800_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{ {
const struct das800_board *thisboard = comedi_board(dev); const struct das800_board *thisboard;
struct das800_private *devpriv; struct das800_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned int irq = it->options[1]; unsigned int irq = it->options[1];
......
...@@ -545,7 +545,7 @@ static int dt2801_dio_insn_config(struct comedi_device *dev, ...@@ -545,7 +545,7 @@ static int dt2801_dio_insn_config(struct comedi_device *dev,
*/ */
static int dt2801_attach(struct comedi_device *dev, struct comedi_devconfig *it) static int dt2801_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{ {
const struct dt2801_board *board = comedi_board(dev); const struct dt2801_board *board;
struct dt2801_private *devpriv; struct dt2801_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
int board_code, type; int board_code, type;
......
...@@ -695,7 +695,7 @@ static int a2150_probe(struct comedi_device *dev) ...@@ -695,7 +695,7 @@ static int a2150_probe(struct comedi_device *dev)
static int a2150_attach(struct comedi_device *dev, struct comedi_devconfig *it) static int a2150_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{ {
const struct a2150_board *thisboard = comedi_board(dev); const struct a2150_board *thisboard;
struct a2150_private *devpriv; struct a2150_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned int irq = it->options[1]; unsigned int irq = it->options[1];
......
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