diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-05-06 18:30:21 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-05-06 18:11:32 +0100 |
commit | e62a15d97b0adede829ba5b4f1c8e28f230bd8e8 (patch) | |
tree | 079f450dc89863128b08088a7399baf5cd528be8 /drivers/spi/spi-dw.h | |
parent | 0c2ce3fe4dd0b8f8dda07ea029f51ddf4c5190c2 (diff) | |
download | linux-stable-e62a15d97b0adede829ba5b4f1c8e28f230bd8e8.tar.gz linux-stable-e62a15d97b0adede829ba5b4f1c8e28f230bd8e8.tar.bz2 linux-stable-e62a15d97b0adede829ba5b4f1c8e28f230bd8e8.zip |
spi: dw: Downgrade interrupt.h to irqreturn.h where appropriate
spi-dw-mid.c along with spi-dw.h are direct users of irqreturn.h
and nothing else is being used from interrupt.h. So, switch them
to use the former instead of latter one.
While here, move the header under #ifdef CONFIG_SPI_DW_MID_DMA
in spi-dw-mid.c.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200506153025.21441-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-dw.h')
-rw-r--r-- | drivers/spi/spi-dw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-dw.h b/drivers/spi/spi-dw.h index aeed49b4a444..5e1e78210d8d 100644 --- a/drivers/spi/spi-dw.h +++ b/drivers/spi/spi-dw.h @@ -2,7 +2,7 @@ #ifndef DW_SPI_HEADER_H #define DW_SPI_HEADER_H -#include <linux/interrupt.h> +#include <linux/irqreturn.h> #include <linux/io.h> #include <linux/scatterlist.h> |