Hi,
I try to enable dm-verity feature in Linux 4.14.98_2.3.3 BSP(non android variant) but compile fail, attached full bitbake linux-imx log to review:
```
/home/build/project_rs1100_tbox/imx-yocto-bsp/build_bringup/tmp/work-shared/imx8qxpc0mek/kernel-source/drivers/md/dm-verity-target.c: In function 'verity_hash_update':
/home/build/project_rs1100_tbox/imx-yocto-bsp/build_bringup/tmp/work-shared/imx8qxpc0mek/kernel-source/drivers/md/dm-verity-target.c:104:10: error: implicit declaration of function 'verity_complete_op'; did you mean 'reinit_completion'? [-Werror=implicit-function-declaration]
return verity_complete_op(res, crypto_ahash_update(req));
^~~~~~~~~~~~~~~~~~
reinit_completion
/home/build/project_rs1100_tbox/imx-yocto-bsp/build_bringup/tmp/work-shared/imx8qxpc0mek/kernel-source/drivers/md/dm-verity-target.c:104:29: error: 'res' undeclared (first use in this function); did you mean 'req'?
return verity_complete_op(res, crypto_ahash_update(req));
^~~
req
/home/build/project_rs1100_tbox/imx-yocto-bsp/build_bringup/tmp/work-shared/imx8qxpc0mek/kernel-source/drivers/md/dm-verity-target.c:104:29: note: each undeclared identifier is reported only once for each function it appears in
/home/build/project_rs1100_tbox/imx-yocto-bsp/build_bringup/tmp/work-shared/imx8qxpc0mek/kernel-source/drivers/md/dm-verity-target.c:121:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
cc1: some warnings being treated as errors
```
The kernel configurations I turn on as below
```
CONFIG_MD=y
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
CONFIG_DM_VERITY=y
```
Can NXP resolve this module compile error and teach me how to verify?
Thanks,