The checkpatch.pl script reported a "Missing a blank line after declarations" warning.
Add the required blank line to adhere to the Linux kernel coding style and improve readability. Signed-off-by: Mohammed GUERMOUD <mohammed.guerm...@gmail.com> --- drivers/gpu/drm/drm_gpuvm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/drm_gpuvm.c b/drivers/gpu/drm/drm_gpuvm.c index db9b089ef62c..522349cd414d 100644 --- a/drivers/gpu/drm/drm_gpuvm.c +++ b/drivers/gpu/drm/drm_gpuvm.c @@ -2485,6 +2485,7 @@ drm_gpuvm_sm_map_exec_lock(struct drm_gpuvm *gpuvm, { if (req_obj) { int ret = drm_exec_prepare_obj(exec, req_obj, num_fences); + if (ret) return ret; } -- 2.43.0