From c7fa4109a8f58328a4135ea53fb7067beb0e52e3 Mon Sep 17 00:00:00 2001 From: Deepak Nibade Date: Wed, 8 Jan 2020 21:24:28 +0530 Subject: [PATCH] gpu: nvgpu: remove extra semicolon in nvgpu_gr_config_init() Extra semicolon showed up as extra statement for which coverage was missing as per Vectorcast. Remove the extra semicolon. Jira NVGPU-4778 Change-Id: Id0135511a50d88c9a3ca5447dd6ebfd3dd9fa52d Signed-off-by: Deepak Nibade Reviewed-on: https://git-master.nvidia.com/r/2276344 Reviewed-by: svc-mobile-coverity Reviewed-by: svc-mobile-misra Reviewed-by: svc-mobile-cert Reviewed-by: Nitin Kumbhar GVS: Gerrit_Virtual_Submit Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/gpu/nvgpu/common/gr/gr_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/nvgpu/common/gr/gr_config.c b/drivers/gpu/nvgpu/common/gr/gr_config.c index 776295c0d..366f199d6 100644 --- a/drivers/gpu/nvgpu/common/gr/gr_config.c +++ b/drivers/gpu/nvgpu/common/gr/gr_config.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -263,7 +263,7 @@ struct nvgpu_gr_config *nvgpu_gr_config_init(struct gk20a *g) config = nvgpu_kzalloc(g, sizeof(*config)); if (config == NULL) { - return NULL;; + return NULL; } config->g = g;