1
0
Fork 0

MLK-22951 mxc: vpu_malone: add missing semicolon

Add a missing semicolon. This missing semicolon is not breaking the
build in defconfig since the next MODULE_DEVICE_TABLE() expand to an
empty string, so the next semicolon is used. When this macro expands
to a non-empty string, the build breaks. This was found by a
"make allmodconfig" build.

Signed-off-by: Julien Olivain <julien.olivain@nxp.com>
Reviewed-by: Shijie Qin <shijie.qin@nxp.com>
Acked-by: Zhou Peng <eagle.zhou@nxp.com>
5.4-rM2-2.2.x-imx-squashed
Julien Olivain 2019-11-12 18:05:52 +01:00 committed by Dong Aisheng
parent 874558fb16
commit d1a0de782c
1 changed files with 1 additions and 1 deletions

View File

@ -6598,7 +6598,7 @@ static const struct of_device_id vpu_of_match[] = {
{ .compatible = "nxp,imx8qm-b0-vpudec", },
{ .compatible = "nxp,imx8qxp-b0-vpudec", },
{}
}
};
MODULE_DEVICE_TABLE(of, vpu_of_match);
static struct platform_driver vpu_driver = {