Commit 6d83d800 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'tee-smatch-for-5.8' of...

Merge tag 'tee-smatch-for-5.8' of git://git.linaro.org/people/jens.wiklander/linux-tee into arm/drivers

tee: remove unnecessary NULL check in tee_shm_alloc()

* tag 'tee-smatch-for-5.8' of git://git.linaro.org/people/jens.wiklander/linux-tee:
  tee: remove unnecessary NULL check in tee_shm_alloc()

Link: https://lore.kernel.org/r/20200504181333.GA11018@jade


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents b4e3b881 1115899e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -162,7 +162,6 @@ struct tee_shm *tee_shm_alloc(struct tee_context *ctx, size_t size, u32 flags)
		}
	}

	if (ctx)
	teedev_ctx_get(ctx);

	return shm;