drm/loongson: Fix error handling in lsdc_pixel_pll_setup()
authorHarshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Thu, 20 Jul 2023 12:39:50 +0000 (05:39 -0700)
committerSui Jingfeng <sui.jingfeng@linux.dev>
Sat, 12 Aug 2023 01:58:07 +0000 (09:58 +0800)
There are two problems in lsdc_pixel_pll_setup()
1. If kzalloc() fails then call iounmap() to release the resources.
2. Both kzalloc and ioremap does not return error pointers on failure, so
   using IS_ERR_OR_NULL() checks is a bit confusing and not very right,
   fix this by changing those to NULL checks instead.

Fixes: f39db26c5428 ("drm: Add kms driver for loongson display controller")
Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn>
Signed-off-by: Sui Jingfeng <sui.jingfeng@linux.dev>
Link: https://patchwork.freedesktop.org/patch/msgid/20230720123950.543082-1-harshit.m.mogalapalli@oracle.com
drivers/gpu/drm/loongson/lsdc_pixpll.c

index 04c15b4697e21818236d6d5f6b6e1a8d6360fb91..2609a2256da4bfc5568538a46e0fa65d6a43a9f0 100644 (file)
@@ -120,12 +120,14 @@ static int lsdc_pixel_pll_setup(struct lsdc_pixpll * const this)
        struct lsdc_pixpll_parms *pparms;
 
        this->mmio = ioremap(this->reg_base, this->reg_size);
-       if (IS_ERR_OR_NULL(this->mmio))
+       if (!this->mmio)
                return -ENOMEM;
 
        pparms = kzalloc(sizeof(*pparms), GFP_KERNEL);
-       if (IS_ERR_OR_NULL(pparms))
+       if (!pparms) {
+               iounmap(this->mmio);
                return -ENOMEM;
+       }
 
        pparms->ref_clock = LSDC_PLL_REF_CLK_KHZ;