Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: stm32 - Fix OF module alias information

The module alias information passed to MODULE_DEVICE_TABLE()
should use stm32_dt_ids instead of undefined sti_dt_ids.

Fixes: b51dbe90912a ("crypto: stm32 - Support for STM32 CRC32 crypto module")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Wei Yongjun and committed by
Herbert Xu
929562b1 2a2a251f

+1 -1
+1 -1
drivers/crypto/stm32/stm32_crc32.c
··· 306 306 { .compatible = "st,stm32f7-crc", }, 307 307 {}, 308 308 }; 309 - MODULE_DEVICE_TABLE(of, sti_dt_ids); 309 + MODULE_DEVICE_TABLE(of, stm32_dt_ids); 310 310 311 311 static struct platform_driver stm32_crc_driver = { 312 312 .probe = stm32_crc_probe,