mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
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:
parent
ac05a587c8
commit
9fc27699bd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user