summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorWilliam Douglas2011-06-23 14:38:36 +0200
committerGreg Kroah-Hartman2011-07-02 00:36:41 +0200
commitf2934c3c519b58f84082652447e62ab4a76c53ec (patch)
tree953f266af9ab3ba7c06d0c0926c2f19b89a35b6c /drivers/tty
parenttty: s5pv210: Add delay loop on fifo reset function for UART (diff)
downloadkernel-qcow2-linux-f2934c3c519b58f84082652447e62ab4a76c53ec.tar.gz
kernel-qcow2-linux-f2934c3c519b58f84082652447e62ab4a76c53ec.tar.xz
kernel-qcow2-linux-f2934c3c519b58f84082652447e62ab4a76c53ec.zip
mrst_max3110: Change max missing message priority.
Change print message to notice instead of error to clean up non critcal messages showing on startup. The MAX3111 not being present is a normal path for end user systems. Signed-off-by: William Douglas <william.douglas@intel.com> [rebased on 3.0, switched to dev_dbg()] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/mrst_max3110.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/mrst_max3110.c b/drivers/tty/serial/mrst_max3110.c
index 1bd28450ca40..3be1b0dd6f22 100644
--- a/drivers/tty/serial/mrst_max3110.c
+++ b/drivers/tty/serial/mrst_max3110.c
@@ -823,7 +823,7 @@ static int __devinit serial_m3110_probe(struct spi_device *spi)
res = RC_TAG;
ret = max3110_write_then_read(max, (u8 *)&res, (u8 *)&res, 2, 0);
if (ret < 0 || res == 0 || res == 0xffff) {
- printk(KERN_ERR "MAX3111 deemed not present (conf reg %04x)",
+ dev_dbg(&spi->dev, "MAX3111 deemed not present (conf reg %04x)",
res);
ret = -ENODEV;
goto err_get_page;