diff options
author | Anna, Suman <s-anna@ti.com> | 2016-08-13 01:42:20 +0200 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-08-13 06:27:49 +0200 |
commit | 730f84ce6d59732d070a1dfb0d2591ff110e3e5d (patch) | |
tree | 82abc09e0330b1c38c149ec89369f73697d14e87 /drivers/remoteproc/remoteproc_virtio.c | |
parent | remoteproc: fix bare unsigned type usage (diff) | |
download | linux-730f84ce6d59732d070a1dfb0d2591ff110e3e5d.tar.xz linux-730f84ce6d59732d070a1dfb0d2591ff110e3e5d.zip |
remoteproc: align code with open parenthesis
This patch fixes the existing alignment checkpatch check
warnings of the type "Alignment should match open parenthesis"
in the remoteproc core source files.
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/remoteproc_virtio.c')
-rw-r--r-- | drivers/remoteproc/remoteproc_virtio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index 62cffe92e40d..93bf00d9c64e 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c @@ -101,14 +101,14 @@ static struct virtqueue *rp_find_vq(struct virtio_device *vdev, memset(addr, 0, size); dev_dbg(dev, "vring%d: va %p qsz %d notifyid %d\n", - id, addr, len, rvring->notifyid); + id, addr, len, rvring->notifyid); /* * Create the new vq, and tell virtio we're not interested in * the 'weak' smp barriers, since we're talking with a real device. */ vq = vring_new_virtqueue(id, len, rvring->align, vdev, false, addr, - rproc_virtio_notify, callback, name); + rproc_virtio_notify, callback, name); if (!vq) { dev_err(dev, "vring_new_virtqueue %s failed\n", name); rproc_free_vring(rvring); @@ -145,9 +145,9 @@ static void rproc_virtio_del_vqs(struct virtio_device *vdev) } static int rproc_virtio_find_vqs(struct virtio_device *vdev, unsigned int nvqs, - struct virtqueue *vqs[], - vq_callback_t *callbacks[], - const char * const names[]) + struct virtqueue *vqs[], + vq_callback_t *callbacks[], + const char * const names[]) { struct rproc *rproc = vdev_to_rproc(vdev); int i, ret; |