Patch "tty: serial: stm32-usart: Remove set but unused 'cookie' variables" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    tty: serial: stm32-usart: Remove set but unused 'cookie' variables

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     tty-serial-stm32-usart-remove-set-but-unused-cookie-.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 17205320028fe5a60e720c30abe01fe2f2c530cc
Author: Lee Jones <lee.jones@xxxxxxxxxx>
Date:   Wed Nov 4 19:35:41 2020 +0000

    tty: serial: stm32-usart: Remove set but unused 'cookie' variables
    
    [ Upstream commit 24832ca3ee85a14c42a4f23a5c8841ef5db3d029 ]
    
    Fixes the following W=1 kernel build warning(s):
    
     drivers/tty/serial/stm32-usart.c: In function â??stm32_transmit_chars_dmaâ??:
     drivers/tty/serial/stm32-usart.c:353:15: warning: variable â??cookieâ?? set but not used [-Wunused-but-set-variable]
     drivers/tty/serial/stm32-usart.c: In function â??stm32_of_dma_rx_probeâ??:
     drivers/tty/serial/stm32-usart.c:1090:15: warning: variable â??cookieâ?? set but not used [-Wunused-but-set-variable]
    
    Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
    Cc: Jiri Slaby <jirislaby@xxxxxxxxxx>
    Cc: Maxime Coquelin <mcoquelin.stm32@xxxxxxxxx>
    Cc: Alexandre Torgue <alexandre.torgue@xxxxxx>
    Cc: Gerald Baeza <gerald.baeza@xxxxxx>
    Cc: linux-serial@xxxxxxxxxxxxxxx
    Cc: linux-stm32@xxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20201104193549.4026187-29-lee.jones@xxxxxxxxxx
    Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/tty/serial/stm32-usart.c b/drivers/tty/serial/stm32-usart.c
index ee6c7762d355..f4de32d3f2af 100644
--- a/drivers/tty/serial/stm32-usart.c
+++ b/drivers/tty/serial/stm32-usart.c
@@ -350,7 +350,6 @@ static void stm32_transmit_chars_dma(struct uart_port *port)
 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
 	struct circ_buf *xmit = &port->state->xmit;
 	struct dma_async_tx_descriptor *desc = NULL;
-	dma_cookie_t cookie;
 	unsigned int count, i;
 
 	if (stm32port->tx_dma_busy)
@@ -394,7 +393,7 @@ static void stm32_transmit_chars_dma(struct uart_port *port)
 	desc->callback_param = port;
 
 	/* Push current DMA TX transaction in the pending queue */
-	cookie = dmaengine_submit(desc);
+	dmaengine_submit(desc);
 
 	/* Issue pending DMA TX requests */
 	dma_async_issue_pending(stm32port->tx_ch);
@@ -1087,7 +1086,6 @@ static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
 	struct device *dev = &pdev->dev;
 	struct dma_slave_config config;
 	struct dma_async_tx_descriptor *desc = NULL;
-	dma_cookie_t cookie;
 	int ret;
 
 	/* Request DMA RX channel */
@@ -1132,7 +1130,7 @@ static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
 	desc->callback_param = NULL;
 
 	/* Push current DMA transaction in the pending queue */
-	cookie = dmaengine_submit(desc);
+	dmaengine_submit(desc);
 
 	/* Issue pending DMA requests */
 	dma_async_issue_pending(stm32port->rx_ch);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux