diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-31 03:30:39 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-08 08:06:21 -0500 |
commit | 85a9012446d4b59a57c5942ca059144fdf8cd439 (patch) | |
tree | b5c32bdba85af8cffb1d3a4f12788fef9b7b0bc2 /drivers/spi | |
parent | 8f51c8108267443865d8ec08403b66da9905ba14 (diff) |
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 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-s3c24xx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/spi/spi-s3c24xx.c b/drivers/spi/spi-s3c24xx.c index 2ccb28d57ba9..746424aa5353 100644 --- a/drivers/spi/spi-s3c24xx.c +++ b/drivers/spi/spi-s3c24xx.c | |||
@@ -29,7 +29,6 @@ | |||
29 | 29 | ||
30 | #include <plat/regs-spi.h> | 30 | #include <plat/regs-spi.h> |
31 | 31 | ||
32 | #include <plat/fiq.h> | ||
33 | #include <asm/fiq.h> | 32 | #include <asm/fiq.h> |
34 | 33 | ||
35 | #include "spi-s3c24xx-fiq.h" | 34 | #include "spi-s3c24xx-fiq.h" |
@@ -84,7 +83,6 @@ struct s3c24xx_spi { | |||
84 | struct s3c2410_spi_info *pdata; | 83 | struct s3c2410_spi_info *pdata; |
85 | }; | 84 | }; |
86 | 85 | ||
87 | |||
88 | #define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT) | 86 | #define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT) |
89 | #define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP) | 87 | #define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP) |
90 | 88 | ||