if (status & SCxSR_FER(port)) {
                                        flag = TTY_FRAME;
                                        port->icount.frame++;
-                                       dev_notice(port->dev, "frame error\n");
                                } else if (status & SCxSR_PER(port)) {
                                        flag = TTY_PARITY;
                                        port->icount.parity++;
-                                       dev_notice(port->dev, "parity error\n");
                                } else
                                        flag = TTY_NORMAL;
 
                /* overrun error */
                if (tty_insert_flip_char(tport, 0, TTY_OVERRUN))
                        copied++;
-
-               dev_notice(port->dev, "overrun error\n");
        }
 
        if (status & SCxSR_FER(port)) {
 
                if (tty_insert_flip_char(tport, 0, TTY_FRAME))
                        copied++;
-
-               dev_notice(port->dev, "frame error\n");
        }
 
        if (status & SCxSR_PER(port)) {
 
                if (tty_insert_flip_char(tport, 0, TTY_PARITY))
                        copied++;
-
-               dev_notice(port->dev, "parity error\n");
        }
 
        if (copied)
 
                tty_insert_flip_char(tport, 0, TTY_OVERRUN);
                tty_flip_buffer_push(tport);
-
-               dev_dbg(port->dev, "overrun error\n");
                copied++;
        }
 
                /* Notify of BREAK */
                if (tty_insert_flip_char(tport, 0, TTY_BREAK))
                        copied++;
-
-               dev_dbg(port->dev, "BREAK detected\n");
        }
 
        if (copied)