if (time_after_eq(jiffies, ch->ch_stop_sending_break)
                    || force) {
                        uchar temp = readb(&ch->ch_neo_uart->lcr);
+
                        writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
                        neo_pci_posting_flush(ch->ch_bd);
                        ch->ch_flags &= ~(CH_BREAK_SENDING);
 static void neo_disable_receiver(struct channel_t *ch)
 {
        uchar tmp = readb(&ch->ch_neo_uart->ier);
+
        tmp &= ~(UART_IER_RDI);
        writeb(tmp, &ch->ch_neo_uart->ier);
        neo_pci_posting_flush(ch->ch_bd);
 static void neo_enable_receiver(struct channel_t *ch)
 {
        uchar tmp = readb(&ch->ch_neo_uart->ier);
+
        tmp |= (UART_IER_RDI);
        writeb(tmp, &ch->ch_neo_uart->ier);
        neo_pci_posting_flush(ch->ch_bd);
                 */
                if (linestatus & error_mask)  {
                        uchar discard;
+
                        linestatus = 0;
                        memcpy_fromio(&discard, &ch->ch_neo_uart->txrxburst, 1);
                        continue;
        if (msecs == 0) {
                if (ch->ch_flags & CH_BREAK_SENDING) {
                        uchar temp = readb(&ch->ch_neo_uart->lcr);
+
                        writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
                        neo_pci_posting_flush(ch->ch_bd);
                        ch->ch_flags &= ~(CH_BREAK_SENDING);
        /* Tell the UART to start sending the break */
        if (!(ch->ch_flags & CH_BREAK_SENDING)) {
                uchar temp = readb(&ch->ch_neo_uart->lcr);
+               
                writeb((temp | UART_LCR_SBC), &ch->ch_neo_uart->lcr);
                neo_pci_posting_flush(ch->ch_bd);
                ch->ch_flags |= (CH_BREAK_SENDING);