diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-09-26 12:37:01 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-01 12:36:02 +0100 |
commit | 1b0a2b2d3ccb98cf998816d87f7193139d54579e (patch) | |
tree | 2e370c9118157b9a96f98613a98957bbbbf4e909 /drivers | |
parent | f4b323905d8b3e28b2a9cef9325dbec1b0f7f064 (diff) |
spi: fsl-lpspi: clean up indentation issue
The complete call is indented incorrectly, remove the extraneous tabs.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20190926113701.26986-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/spi-fsl-lpspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-fsl-lpspi.c b/drivers/spi/spi-fsl-lpspi.c index d08e9324140e..5efd73cd0ead 100644 --- a/drivers/spi/spi-fsl-lpspi.c +++ b/drivers/spi/spi-fsl-lpspi.c @@ -779,7 +779,7 @@ static irqreturn_t fsl_lpspi_isr(int irq, void *dev_id) if (temp_SR & SR_FCF && (temp_IER & IER_FCIE)) { writel(SR_FCF, fsl_lpspi->base + IMX7ULP_SR); - complete(&fsl_lpspi->xfer_done); + complete(&fsl_lpspi->xfer_done); return IRQ_HANDLED; } |