aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi_mpc83xx.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-06-17 19:26:04 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-18 16:03:42 -0400
commite7db06b5d5afcef15c4c3e61c3a7441ed7ad1407 (patch)
treec0d1e01d49fdb3f288da28ffc3b349810c4e1b61 /drivers/spi/spi_mpc83xx.c
parent7d0771970c51e736758525dd71fb82dd036b823a (diff)
spi: move more spi_setup() functionality into core
Move some common spi_setup() error checks into the SPI framework from the spi_master controller drivers: - Add a new "mode_bits" field to spi_master - Use that in spi_setup to validate the spi->mode value being requested. Setting this new field is now mandatory for any controller supporting more than vanilla SPI_MODE_0. - Update all spi_master drivers to: * Initialize that field * Remove current spi_setup() checks using that value. This is a net minor code shrink. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/spi/spi_mpc83xx.c')
-rw-r--r--drivers/spi/spi_mpc83xx.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/drivers/spi/spi_mpc83xx.c b/drivers/spi/spi_mpc83xx.c
index 0926a3e293e0..ce61be98e06d 100644
--- a/drivers/spi/spi_mpc83xx.c
+++ b/drivers/spi/spi_mpc83xx.c
@@ -419,10 +419,6 @@ static void mpc83xx_spi_work(struct work_struct *work)
419 spin_unlock_irq(&mpc83xx_spi->lock); 419 spin_unlock_irq(&mpc83xx_spi->lock);
420} 420}
421 421
422/* the spi->mode bits understood by this driver: */
423#define MODEBITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH \
424 | SPI_LSB_FIRST | SPI_LOOP)
425
426static int mpc83xx_spi_setup(struct spi_device *spi) 422static int mpc83xx_spi_setup(struct spi_device *spi)
427{ 423{
428 struct mpc83xx_spi *mpc83xx_spi; 424 struct mpc83xx_spi *mpc83xx_spi;
@@ -430,12 +426,6 @@ static int mpc83xx_spi_setup(struct spi_device *spi)
430 u32 hw_mode; 426 u32 hw_mode;
431 struct spi_mpc83xx_cs *cs = spi->controller_state; 427 struct spi_mpc83xx_cs *cs = spi->controller_state;
432 428
433 if (spi->mode & ~MODEBITS) {
434 dev_dbg(&spi->dev, "setup: unsupported mode bits %x\n",
435 spi->mode & ~MODEBITS);
436 return -EINVAL;
437 }
438
439 if (!spi->max_speed_hz) 429 if (!spi->max_speed_hz)
440 return -EINVAL; 430 return -EINVAL;
441 431
@@ -562,6 +552,10 @@ mpc83xx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq)
562 552
563 dev_set_drvdata(dev, master); 553 dev_set_drvdata(dev, master);
564 554
555 /* the spi->mode bits understood by this driver: */
556 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH
557 | SPI_LSB_FIRST | SPI_LOOP;
558
565 master->setup = mpc83xx_spi_setup; 559 master->setup = mpc83xx_spi_setup;
566 master->transfer = mpc83xx_spi_transfer; 560 master->transfer = mpc83xx_spi_transfer;
567 master->cleanup = mpc83xx_spi_cleanup; 561 master->cleanup = mpc83xx_spi_cleanup;