staging: nvec: Remove space after a cast

No space is required after a cast. Checkpatch detected this issue.

Signed-off-by: Laura Garcia Liebana <nevola@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Laura Garcia Liebana 2016-03-12 16:20:04 +01:00 committed by Greg Kroah-Hartman
parent ac05a587c8
commit 9fc27699bd
1 changed files with 4 additions and 3 deletions

View File

@ -659,10 +659,11 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
} else if (nvec->tx && nvec->tx->pos < nvec->tx->size) {
to_send = nvec->tx->data[nvec->tx->pos++];
} else {
dev_err(nvec->dev, "tx buffer underflow on %p (%u > %u)\n",
dev_err(nvec->dev,
"tx buffer underflow on %p (%u > %u)\n",
nvec->tx,
(uint) (nvec->tx ? nvec->tx->pos : 0),
(uint) (nvec->tx ? nvec->tx->size : 0));
(uint)(nvec->tx ? nvec->tx->pos : 0),
(uint)(nvec->tx ? nvec->tx->size : 0));
nvec->state = 0;
}
break;