soc: fsl: guts: remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Wed, 3 Feb 2021 01:51:03 +0000 (09:51 +0800)
committerLi Yang <leoyang.li@nxp.com>
Tue, 6 Apr 2021 20:25:50 +0000 (15:25 -0500)
Eliminate the following coccicheck warning:
./drivers/soc/fsl/guts.c:120:2-3: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
drivers/soc/fsl/guts.c

index 34810f9..d5e9a5f 100644 (file)
@@ -117,7 +117,7 @@ static const struct fsl_soc_die_attr *fsl_soc_die_match(
                if (matches->svr == (svr & matches->mask))
                        return matches;
                matches++;
-       };
+       }
        return NULL;
 }