diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-31 12:30:39 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-08 17:06:21 +0400 |
commit | 85a9012446d4b59a57c5942ca059144fdf8cd439 (patch) | |
tree | b5c32bdba85af8cffb1d3a4f12788fef9b7b0bc2 /include/linux/spi | |
parent | 8f51c8108267443865d8ec08403b66da9905ba14 (diff) | |
download | linux-85a9012446d4b59a57c5942ca059144fdf8cd439.tar.xz |
spi: s3c24xx: Remove reference to plat/fiq.h
fiq.h contains only a function declaration and is not used by anyone
else. Move the declaration to the driver header file and remove the
unnecessary platform dependency from the driver.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/spi')
-rw-r--r-- | include/linux/spi/s3c24xx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/spi/s3c24xx.h b/include/linux/spi/s3c24xx.h index c23b923e493b..ca271c06c591 100644 --- a/include/linux/spi/s3c24xx.h +++ b/include/linux/spi/s3c24xx.h @@ -23,4 +23,6 @@ struct s3c2410_spi_info { void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol); }; +extern int s3c24xx_set_fiq(unsigned int irq, bool on); + #endif /* __LINUX_SPI_S3C24XX_H */ |