aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Douglas <william.douglas@intel.com>2011-06-23 08:38:36 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-06-23 11:54:09 -0400
commit0bb04bf3dfdfe1c981087cdfb0d9d772c3a0ba55 (patch)
tree5a07789686e4ca3595f1ded3bc72ae713c802616
parentbccaeafd7c117acee36e90d37c7e05c19be9e7bf (diff)
mrst_max3110: Change max missing message priority.
Change print message to notice instead of error to clean up non critical 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: Linus Torvalds <torvalds@linux-foundation.org>
-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 1bd28450ca4..3be1b0dd6f2 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)
823 res = RC_TAG; 823 res = RC_TAG;
824 ret = max3110_write_then_read(max, (u8 *)&res, (u8 *)&res, 2, 0); 824 ret = max3110_write_then_read(max, (u8 *)&res, (u8 *)&res, 2, 0);
825 if (ret < 0 || res == 0 || res == 0xffff) { 825 if (ret < 0 || res == 0 || res == 0xffff) {
826 printk(KERN_ERR "MAX3111 deemed not present (conf reg %04x)", 826 dev_dbg(&spi->dev, "MAX3111 deemed not present (conf reg %04x)",
827 res); 827 res);
828 ret = -ENODEV; 828 ret = -ENODEV;
829 goto err_get_page; 829 goto err_get_page;