staging: vme: remove blank line after return statement

This patch resolves a checkpatch issue by removing blank line,
after return statement at end of the function.

Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
Link: https://lore.kernel.org/r/20230224123401.1365-1-roheetchavan@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Rohit Chavan 2023-02-24 18:04:01 +05:30 committed by Greg Kroah-Hartman
parent 0a689b8241
commit af5a5587a1

View file

@ -329,7 +329,6 @@ static int fake_master_set(struct vme_master_resource *image, int enabled,
err_dwidth:
err_window:
return retval;
}
/*
@ -638,7 +637,6 @@ static noinline_for_stack void fake_vmewrite8(struct fake_driver *bridge,
}
fake_lm_check(bridge, addr, aspace, cycle);
}
static noinline_for_stack void fake_vmewrite16(struct fake_driver *bridge,
@ -669,7 +667,6 @@ static noinline_for_stack void fake_vmewrite16(struct fake_driver *bridge,
}
fake_lm_check(bridge, addr, aspace, cycle);
}
static noinline_for_stack void fake_vmewrite32(struct fake_driver *bridge,
@ -700,7 +697,6 @@ static noinline_for_stack void fake_vmewrite32(struct fake_driver *bridge,
}
fake_lm_check(bridge, addr, aspace, cycle);
}
static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
@ -1234,7 +1230,6 @@ static int __init fake_init(void)
kfree(fake_bridge);
err_struct:
return retval;
}
static void __exit fake_exit(void)