diff --git a/[refs] b/[refs] index e01c282f465e..27e06ed3881f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 9d898966c4a07e4a5092215b5a2829d0ef02baa2 +refs/heads/master: dfc97fcebd6a9a85335adcfc0e4d0a204bbaea35 diff --git a/trunk/drivers/tty/serial/jsm/jsm_neo.c b/trunk/drivers/tty/serial/jsm/jsm_neo.c index bd6e84699e11..81dfafa11b0b 100644 --- a/trunk/drivers/tty/serial/jsm/jsm_neo.c +++ b/trunk/drivers/tty/serial/jsm/jsm_neo.c @@ -522,7 +522,7 @@ static void neo_copy_data_from_queue_to_uart(struct jsm_channel *ch) writeb(circ->buf[circ->tail], &ch->ch_neo_uart->txrx); jsm_printk(WRITE, INFO, &ch->ch_bd->pci_dev, - "Tx data: %x\n", circ->buf[circ->head]); + "Tx data: %x\n", circ->buf[circ->tail]); circ->tail = (circ->tail + 1) & (UART_XMIT_SIZE - 1); ch->ch_txcount++; }