#define PR_FMT "mrst_max3110: "
 
+#define UART_TX_NEEDED 1
+#define CON_TX_NEEDED  2
+#define BIT_IRQ_PENDING    3
+
 struct uart_max3110 {
        struct uart_port port;
        struct spi_device *spi;
        u8 clock;
        u8 parity, word_7bits;
 
-       atomic_t uart_tx_need;
+       unsigned long uart_flags;
 
        /* console related */
        struct circ_buf con_xmit;
-       atomic_t con_tx_need;
 
        /* irq related */
        u16 irq;
-       atomic_t irq_pending;
 };
 
 /* global data structure, may need be removed */
                xmit->head = (xmit->head + 1) & (PAGE_SIZE - 1);
        }
 
-       if (!atomic_read(&max->con_tx_need)) {
-               atomic_set(&max->con_tx_need, 1);
+
+       if (!test_and_set_bit(CON_TX_NEEDED, &max->uart_flags))
                wake_up_process(max->main_thread);
-       }
 }
 
 /*
        struct uart_max3110 *max =
                container_of(port, struct uart_max3110, port);
 
-       if (!atomic_read(&max->uart_tx_need)) {
-               atomic_set(&max->uart_tx_need, 1);
+       if (!test_and_set_bit(UART_TX_NEEDED, &max->uart_flags))
                wake_up_process(max->main_thread);
-       }
 }
 
 static void receive_chars(struct uart_max3110 *max, unsigned char *str, int len)
        pr_info(PR_FMT "start main thread\n");
 
        do {
-               wait_event_interruptible(*wq, (atomic_read(&max->irq_pending) ||
-                                              atomic_read(&max->con_tx_need) ||
-                                            atomic_read(&max->uart_tx_need)) ||
-                                            kthread_should_stop());
+               wait_event_interruptible(*wq, max->uart_flags || kthread_should_stop());
 
                mutex_lock(&max->thread_mutex);
 
-#ifdef CONFIG_MRST_MAX3110_IRQ
-               if (atomic_read(&max->irq_pending)) {
+               if (test_and_clear_bit(BIT_IRQ_PENDING, &max->uart_flags))
                        max3110_console_receive(max);
-                       atomic_set(&max->irq_pending, 0);
-               }
-#endif
 
                /* first handle console output */
-               if (atomic_read(&max->con_tx_need)) {
+               if (test_and_clear_bit(CON_TX_NEEDED, &max->uart_flags))
                        send_circ_buf(max, xmit);
-                       atomic_set(&max->con_tx_need, 0);
-               }
 
                /* handle uart output */
-               if (atomic_read(&max->uart_tx_need)) {
+               if (test_and_clear_bit(UART_TX_NEEDED, &max->uart_flags))
                        transmit_char(max);
-                       atomic_set(&max->uart_tx_need, 0);
-               }
+
                mutex_unlock(&max->thread_mutex);
+
        } while (!kthread_should_stop());
 
        return ret;
 
        /* max3110's irq is a falling edge, not level triggered,
         * so no need to disable the irq */
-       if (!atomic_read(&max->irq_pending)) {
-               atomic_inc(&max->irq_pending);
+       if (!test_and_set_bit(BIT_IRQ_PENDING, &max->uart_flags))
                wake_up_process(max->main_thread);
-       }
+
        return IRQ_HANDLED;
 }
 #else
        max->baud = 0;
 
        max->cur_conf = 0;
-       atomic_set(&max->irq_pending, 0);
+       max->uart_flags = 0;
+
        /* Check if reading configuration register returns something sane */
 
        res = RC_TAG;