drivers: crypto: rsa_mod_exp: avoid DM_FLAG_PRE_RELOC
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Wed, 15 Apr 2020 18:31:53 +0000 (18:31 +0000)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 16 Apr 2020 06:12:32 +0000 (08:12 +0200)
Function rsa_verify_key() is not called before relocation. So there is no
need to load the UCLASS_MOD_EXP drivers before relocation.

This avoid a failure to boot for pine64-lts_defconfig with CONFIG_RSA=y.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
drivers/crypto/fsl/fsl_rsa.c
drivers/crypto/rsa_mod_exp/mod_exp_sw.c

index c5c76e319fa800fba4d6d50fb4dae040ef336862..0cb3c6b5f2f4297c4d491fd583bf7e4f1d93870a 100644 (file)
@@ -52,7 +52,6 @@ U_BOOT_DRIVER(fsl_rsa_mod_exp) = {
        .name   = "fsl_rsa_mod_exp",
        .id     = UCLASS_MOD_EXP,
        .ops    = &fsl_mod_exp_ops,
-       .flags  = DM_FLAG_PRE_RELOC,
 };
 
 U_BOOT_DEVICE(fsl_rsa) = {
index 46b9f1825cce94dc00f06fee5799cf6113328958..c9b571a461d0b644f61a9215c8b8d7db4b4d7a87 100644 (file)
@@ -31,7 +31,6 @@ U_BOOT_DRIVER(mod_exp_sw) = {
        .name   = "mod_exp_sw",
        .id     = UCLASS_MOD_EXP,
        .ops    = &mod_exp_ops_sw,
-       .flags  = DM_FLAG_PRE_RELOC,
 };
 
 U_BOOT_DEVICE(mod_exp_sw) = {