ftdi: A few errors are err() that should be debug which causes much spewage

Fixes #10783

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Alan Cox 2008-10-13 10:36:00 +01:00 коммит произвёл Linus Torvalds
Родитель 4ad6de0b3f
Коммит 43b11d33f2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -860,7 +860,7 @@ static int update_mctrl(struct usb_serial_port *port, unsigned int set,
kfree(buf); kfree(buf);
if (rv < 0) { if (rv < 0) {
err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s", dbg("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
__func__, __func__,
(set & TIOCM_DTR) ? "HIGH" : (set & TIOCM_DTR) ? "HIGH" :
(clear & TIOCM_DTR) ? "LOW" : "unchanged", (clear & TIOCM_DTR) ? "LOW" : "unchanged",
@ -2256,7 +2256,7 @@ static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
0, 0, 0, 0,
buf, 1, WDR_TIMEOUT); buf, 1, WDR_TIMEOUT);
if (ret < 0) { if (ret < 0) {
err("%s Could not get modem status of device - err: %d", __func__, dbg("%s Could not get modem status of device - err: %d", __func__,
ret); ret);
return ret; return ret;
} }
@ -2275,7 +2275,7 @@ static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
0, priv->interface, 0, priv->interface,
buf, 2, WDR_TIMEOUT); buf, 2, WDR_TIMEOUT);
if (ret < 0) { if (ret < 0) {
err("%s Could not get modem status of device - err: %d", __func__, dbg("%s Could not get modem status of device - err: %d", __func__,
ret); ret);
return ret; return ret;
} }