Commit b25f7cb3 authored by Alexon Oliveira's avatar Alexon Oliveira Committed by Greg Kroah-Hartman
Browse files

staging: vme_user: fix check alignment of open parenthesis in vme_fake.c



Fixed all CHECK: Alignment should match open parenthesis
as reported by checkpatch to adhere to the Linux kernel
coding-style guidelines.

Signed-off-by: default avatarAlexon Oliveira <alexondunkan@gmail.com>
Link: https://lore.kernel.org/r/639fc19f5c5bce6557a813728b28c299c5134ecf.1693164540.git.alexondunkan@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8e050848
Loading
Loading
Loading
Loading
+33 −32
Original line number Diff line number Diff line
@@ -802,8 +802,8 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
 * Requires a previously configured master window, returns final value.
 */
static unsigned int fake_master_rmw(struct vme_master_resource *image,
		unsigned int mask, unsigned int compare, unsigned int swap,
		loff_t offset)
				    unsigned int mask, unsigned int compare,
				    unsigned int swap, loff_t offset)
{
	u32 tmp, base;
	u32 aspace, cycle;
@@ -894,7 +894,8 @@ static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base,
 * or disabled.
 */
static int fake_lm_get(struct vme_lm_resource *lm,
		unsigned long long *lm_base, u32 *aspace, u32 *cycle)
		       unsigned long long *lm_base,
		       u32 *aspace, u32 *cycle)
{
	struct fake_driver *bridge;