Commit 81e7b7f5 authored by Minghao Chi's avatar Minghao Chi Committed by Greg Kroah-Hartman

drivers/misc/ocxl: remove redundant rc variable

Return value from ocxl_context_attach() directly instead
of taking this in another redundant variable.
Reported-by: default avatarZeal Robot <zealci@zte.com.cn>
Acked-by: default avatarAndrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: default avatarMinghao Chi <chi.minghao@zte.com.cn>
Link: https://lore.kernel.org/r/20211215060438.441918-1-chi.minghao@zte.com.cnSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6da3f337
...@@ -74,7 +74,6 @@ static long afu_ioctl_attach(struct ocxl_context *ctx, ...@@ -74,7 +74,6 @@ static long afu_ioctl_attach(struct ocxl_context *ctx,
{ {
struct ocxl_ioctl_attach arg; struct ocxl_ioctl_attach arg;
u64 amr = 0; u64 amr = 0;
int rc;
pr_debug("%s for context %d\n", __func__, ctx->pasid); pr_debug("%s for context %d\n", __func__, ctx->pasid);
...@@ -86,8 +85,7 @@ static long afu_ioctl_attach(struct ocxl_context *ctx, ...@@ -86,8 +85,7 @@ static long afu_ioctl_attach(struct ocxl_context *ctx,
return -EINVAL; return -EINVAL;
amr = arg.amr & mfspr(SPRN_UAMOR); amr = arg.amr & mfspr(SPRN_UAMOR);
rc = ocxl_context_attach(ctx, amr, current->mm); return ocxl_context_attach(ctx, amr, current->mm);
return rc;
} }
static long afu_ioctl_get_metadata(struct ocxl_context *ctx, static long afu_ioctl_get_metadata(struct ocxl_context *ctx,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment