diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-09-01 10:55:23 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-09-01 10:55:23 -0400 |
commit | 8944f4f3d9695e04f7091ab61da9aab7a4be5846 (patch) | |
tree | a78a9f4915c3dc3534c69e2338e46a423b90891f /drivers/spi | |
parent | cc0fc0bbeb17dd33ed7bfea58d0178e9c007ff67 (diff) |
spi/spi_s3c64xx: Staticise non-exported functions
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Jassi Brar <jassisinghbrar@gmail.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi_s3c64xx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/spi/spi_s3c64xx.c b/drivers/spi/spi_s3c64xx.c index a0b63b785418..7e627f73bc6c 100644 --- a/drivers/spi/spi_s3c64xx.c +++ b/drivers/spi/spi_s3c64xx.c | |||
@@ -447,8 +447,8 @@ static void s3c64xx_spi_config(struct s3c64xx_spi_driver_data *sdd) | |||
447 | writel(val, regs + S3C64XX_SPI_CLK_CFG); | 447 | writel(val, regs + S3C64XX_SPI_CLK_CFG); |
448 | } | 448 | } |
449 | 449 | ||
450 | void s3c64xx_spi_dma_rxcb(struct s3c2410_dma_chan *chan, void *buf_id, | 450 | static void s3c64xx_spi_dma_rxcb(struct s3c2410_dma_chan *chan, void *buf_id, |
451 | int size, enum s3c2410_dma_buffresult res) | 451 | int size, enum s3c2410_dma_buffresult res) |
452 | { | 452 | { |
453 | struct s3c64xx_spi_driver_data *sdd = buf_id; | 453 | struct s3c64xx_spi_driver_data *sdd = buf_id; |
454 | unsigned long flags; | 454 | unsigned long flags; |
@@ -467,8 +467,8 @@ void s3c64xx_spi_dma_rxcb(struct s3c2410_dma_chan *chan, void *buf_id, | |||
467 | spin_unlock_irqrestore(&sdd->lock, flags); | 467 | spin_unlock_irqrestore(&sdd->lock, flags); |
468 | } | 468 | } |
469 | 469 | ||
470 | void s3c64xx_spi_dma_txcb(struct s3c2410_dma_chan *chan, void *buf_id, | 470 | static void s3c64xx_spi_dma_txcb(struct s3c2410_dma_chan *chan, void *buf_id, |
471 | int size, enum s3c2410_dma_buffresult res) | 471 | int size, enum s3c2410_dma_buffresult res) |
472 | { | 472 | { |
473 | struct s3c64xx_spi_driver_data *sdd = buf_id; | 473 | struct s3c64xx_spi_driver_data *sdd = buf_id; |
474 | unsigned long flags; | 474 | unsigned long flags; |