Commit 94ff05bc authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_6527: remove extra probe noise

The dev_info() showing the board id is just extra noise.

Remove it but make sure the probed id is correct. Rename the CamelCase
define used for the id register.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 186bdcd1
...@@ -43,7 +43,7 @@ Updated: Sat, 25 Jan 2003 13:24:40 -0800 ...@@ -43,7 +43,7 @@ Updated: Sat, 25 Jan 2003 13:24:40 -0800
#include "mite.h" #include "mite.h"
#define Port_Register(x) (0x00+(x)) #define Port_Register(x) (0x00+(x))
#define ID_Register 0x06 #define NI6527_ID_REG 0x06
#define Clear_Register 0x07 #define Clear_Register 0x07
#define ClrEdge 0x08 #define ClrEdge 0x08
...@@ -342,8 +342,9 @@ static int ni6527_auto_attach(struct comedi_device *dev, ...@@ -342,8 +342,9 @@ static int ni6527_auto_attach(struct comedi_device *dev,
return ret; return ret;
} }
dev_info(dev->class_dev, "board: %s, ID=0x%02x\n", dev->board_name, /* make sure this is actually a 6527 device */
readb(devpriv->mite->daq_io_addr + ID_Register)); if (readb(devpriv->mite->daq_io_addr + NI6527_ID_REG) != 0x27)
return -ENODEV;
ret = comedi_alloc_subdevices(dev, 3); ret = comedi_alloc_subdevices(dev, 3);
if (ret) if (ret)
......
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