soc: fsl: guts: remove unneeded semicolon

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>
This commit is contained in:
Yang Li 2021-02-03 09:51:03 +08:00 committed by Li Yang
parent 7374a3e572
commit 9469f04bb9

View file

@ -117,7 +117,7 @@ static const struct fsl_soc_die_attr *fsl_soc_die_match(
if (matches->svr == (svr & matches->mask)) if (matches->svr == (svr & matches->mask))
return matches; return matches;
matches++; matches++;
}; }
return NULL; return NULL;
} }