drm/amdkfd: check for null dev to avoid a null pointer dereference
authorColin Ian King <colin.king@canonical.com>
Fri, 8 Sep 2017 14:13:33 +0000 (15:13 +0100)
committerOded Gabbay <oded.gabbay@gmail.com>
Fri, 8 Sep 2017 14:13:33 +0000 (15:13 +0100)
commitbfaa1ce809bbcd12b1399409ab1dbf0cdaba6e27
treed9756188eedec6d415652f8d7cad20d229f61dc0
parent56eac98b8a0bbb72132340dbfedc912c68c4bd56
drm/amdkfd: check for null dev to avoid a null pointer dereference

The call to kfd_device_by_id can potentially return null, so check that
dev is null and return with -EINVAL to avoid a null pointer dereference.

Detected by CoverityScan CID#1454629 ("Dereference null return value")

Fixes: 5d71dbc3a588 ("drm/amdkfd: Implement image tiling mode support v2")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c