Skip to content

Commit

Permalink
spi/bitbang: check for setup_transfer during initialization
Browse files Browse the repository at this point in the history
setup_transfer is mandatory if spi_bitbang_transfer is used, so
check for it during initialization and not each time during runtime.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
  • Loading branch information
Sascha Hauer authored and Grant Likely committed Feb 15, 2011
1 parent 1974eba commit ea3065d
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions drivers/spi/spi_bitbang.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,6 @@ static void bitbang_work(struct work_struct *work)
struct spi_bitbang *bitbang =
container_of(work, struct spi_bitbang, work);
unsigned long flags;
int (*setup_transfer)(struct spi_device *,
struct spi_transfer *);

setup_transfer = bitbang->setup_transfer;

spin_lock_irqsave(&bitbang->lock, flags);
bitbang->busy = 1;
Expand Down Expand Up @@ -300,11 +296,7 @@ static void bitbang_work(struct work_struct *work)

/* init (-1) or override (1) transfer params */
if (do_setup != 0) {
if (!setup_transfer) {
status = -ENOPROTOOPT;
break;
}
status = setup_transfer(spi, t);
status = bitbang->setup_transfer(spi, t);
if (status < 0)
break;
if (do_setup == -1)
Expand Down Expand Up @@ -465,6 +457,9 @@ int spi_bitbang_start(struct spi_bitbang *bitbang)
}
} else if (!bitbang->master->setup)
return -EINVAL;
if (bitbang->master->transfer == spi_bitbang_transfer &&
!bitbang->setup_transfer)
return -EINVAL;

/* this task is the only thing to touch the SPI bits */
bitbang->busy = 0;
Expand Down

0 comments on commit ea3065d

Please sign in to comment.