Переглянути джерело

serial: mxs-auart: Fix typo in sanity check

Detected by cppcheck:
[others/linux/drivers/tty/serial/mxs-auart.c:553]: (style) Same expression on both sides of '||'.

Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Thomas Jarosch 12 роки тому
батько
коміт
81a7d77749
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      drivers/tty/serial/mxs-auart.c

+ 1 - 1
drivers/tty/serial/mxs-auart.c

@@ -550,7 +550,7 @@ static int mxs_auart_dma_init(struct mxs_auart_port *s)
 		return 0;
 
 	/* We do not get the right DMA channels. */
-	if (s->dma_channel_rx == -1 || s->dma_channel_rx == -1)
+	if (s->dma_channel_rx == -1 || s->dma_channel_tx == -1)
 		return -EINVAL;
 
 	/* init for RX */