Skip to content

Commit

Permalink
Merge remote-tracking branch 'spi/fix/setup' into spi-linus
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Jul 15, 2013
2 parents 069e157 + 103ccee commit 52bc441
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
12 changes: 12 additions & 0 deletions drivers/spi/spi-altera.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@ static void altera_spi_chipsel(struct spi_device *spi, int value)
}
}

static int altera_spi_setupxfer(struct spi_device *spi, struct spi_transfer *t)
{
return 0;
}

static int altera_spi_setup(struct spi_device *spi)
{
return 0;
}

static inline unsigned int hw_txbyte(struct altera_spi *hw, int count)
{
if (hw->tx) {
Expand Down Expand Up @@ -221,6 +231,7 @@ static int altera_spi_probe(struct platform_device *pdev)
master->bus_num = pdev->id;
master->num_chipselect = 16;
master->mode_bits = SPI_CS_HIGH;
master->setup = altera_spi_setup;

hw = spi_master_get_devdata(master);
platform_set_drvdata(pdev, hw);
Expand All @@ -229,6 +240,7 @@ static int altera_spi_probe(struct platform_device *pdev)
hw->bitbang.master = spi_master_get(master);
if (!hw->bitbang.master)
return err;
hw->bitbang.setup_transfer = altera_spi_setupxfer;
hw->bitbang.chipselect = altera_spi_chipsel;
hw->bitbang.txrx_bufs = altera_spi_txrx;

Expand Down
13 changes: 13 additions & 0 deletions drivers/spi/spi-nuc900.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,17 @@ static void nuc900_spi_gobusy(struct nuc900_spi *hw)
spin_unlock_irqrestore(&hw->lock, flags);
}

static int nuc900_spi_setupxfer(struct spi_device *spi,
struct spi_transfer *t)
{
return 0;
}

static int nuc900_spi_setup(struct spi_device *spi)
{
return 0;
}

static inline unsigned int hw_txbyte(struct nuc900_spi *hw, int count)
{
return hw->tx ? hw->tx[count] : 0;
Expand Down Expand Up @@ -366,8 +377,10 @@ static int nuc900_spi_probe(struct platform_device *pdev)
master->num_chipselect = hw->pdata->num_cs;
master->bus_num = hw->pdata->bus_num;
hw->bitbang.master = hw->master;
hw->bitbang.setup_transfer = nuc900_spi_setupxfer;
hw->bitbang.chipselect = nuc900_spi_chipsel;
hw->bitbang.txrx_bufs = nuc900_spi_txrx;
hw->bitbang.master->setup = nuc900_spi_setup;

hw->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (hw->res == NULL) {
Expand Down

0 comments on commit 52bc441

Please sign in to comment.