drm/kmb: Fix error return code in kmb_hw_init()
authorZhen Lei <thunder.leizhen@huawei.com>
Thu, 13 May 2021 13:46:38 +0000 (21:46 +0800)
committerAnitha Chrisanthus <anitha.chrisanthus@intel.com>
Tue, 22 Jun 2021 17:33:49 +0000 (10:33 -0700)
commit6fd8f323b3e4e5290d02174559308669507c00dd
tree24967c045deb3276a15366532859744a25883700
parent8ddf5b9bb479570a3825d70fecfb9399bc15700c
drm/kmb: Fix error return code in kmb_hw_init()

When the call to platform_get_irq() to obtain the IRQ of the lcd fails, the
returned error code should be propagated. However, we currently do not
explicitly assign this error code to 'ret'. As a result, 0 was incorrectly
returned.

Fixes: 7f7b96a8a0a1 ("drm/kmb: Add support for KeemBay Display")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210513134639.6541-1-thunder.leizhen@huawei.com
drivers/gpu/drm/kmb/kmb_drv.c