]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
staging: nvec: Remove space after a cast
authorLaura Garcia Liebana <nevola@gmail.com>
Sat, 12 Mar 2016 15:20:04 +0000 (16:20 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Mar 2016 14:30:36 +0000 (07:30 -0700)
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>
drivers/staging/nvec/nvec.c

index 9fda136b8e05ea333e6868e4dfa8808f55cd4398..dc38ca8158068053d435cccc0f589a8b1c315df7 100644 (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;