Skip to content

Commit

Permalink
staging: vme_user: fix check blank lines not necessary
Browse files Browse the repository at this point in the history
Fixed all CHECK: Blank lines aren't necessary after an open brace '{'
and CHECK: Blank lines aren't necessary before a close brace '}'
as reported by checkpatch to adhere to the Linux kernel
coding-style guidelines.

Signed-off-by: Alexon Oliveira <alexondunkan@gmail.com>
Link: https://lore.kernel.org/r/ZNqYXAe/wIRl8qEe@alolivei-thinkpadt480s.gru.csb
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Alexon Oliveira authored and Greg Kroah-Hartman committed Aug 22, 2023
1 parent be6cded commit 03d5937
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/vme_user/vme.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ struct vme_resource *vme_slave_request(struct vme_dev *vdev, u32 address,
if (((slave_image->address_attr & address) == address) &&
((slave_image->cycle_attr & cycle) == cycle) &&
(slave_image->locked == 0)) {

slave_image->locked = 1;
mutex_unlock(&slave_image->mtx);
allocated_image = slave_image;
Expand Down Expand Up @@ -510,7 +509,6 @@ struct vme_resource *vme_master_request(struct vme_dev *vdev, u32 address,
((master_image->cycle_attr & cycle) == cycle) &&
((master_image->width_attr & dwidth) == dwidth) &&
(master_image->locked == 0)) {

master_image->locked = 1;
spin_unlock(&master_image->lock);
allocated_image = master_image;
Expand Down Expand Up @@ -682,7 +680,6 @@ ssize_t vme_master_read(struct vme_resource *resource, void *buf, size_t count,
count = length - offset;

return bridge->master_read(image, buf, count, offset);

}
EXPORT_SYMBOL(vme_master_read);

Expand Down Expand Up @@ -887,7 +884,6 @@ struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route)
mutex_lock(&dma_ctrlr->mtx);
if (((dma_ctrlr->route_attr & route) == route) &&
(dma_ctrlr->locked == 0)) {

dma_ctrlr->locked = 1;
mutex_unlock(&dma_ctrlr->mtx);
allocated_ctrlr = dma_ctrlr;
Expand Down

0 comments on commit 03d5937

Please sign in to comment.