spi: at91-usart: Remove some dead code
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 17 Sep 2023 14:36:26 +0000 (16:36 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 25 Sep 2023 14:27:48 +0000 (16:27 +0200)
commit8a771075e50bef5e2a063a9f954b36a33fb7359f
tree536c15c6c8c7eaecdab788419207e5db8fc8dbae
parent0fc57bf1b2ff178377e756761a884d4b6c69ebf9
spi: at91-usart: Remove some dead code

dma_request_chan() does not return NULL. It returns a valid pointer or an
error pointer.

So, some dead code can be removed.

The IS_ERR_OR_NULL() in the error handling path are still needed, because
the error handling path is common to the whole function and the
ctlr->dma_xx are NULL when at91_usart_spi_configure_dma() is called.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/84eb08daf85d203b34af9d8d08abf86804211413.1694961365.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-at91-usart.c