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
1 changed files with 1 additions and 1 deletions

View 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;
}