yea, for backward compatibility both platfrom_driver and driver_ were supported. Maybe it's time to reconsider this now... Thanks for the clean up fix. Reviewed-by: Maxim Uvarov <maxim.uvarov@xxxxxxxxxx> Best regards, Maxim. On Mon, 28 Nov 2022 at 04:23, Jarkko Sakkinen <jarkko@xxxxxxxxxx> wrote: > > On Thu, Nov 24, 2022 at 03:19:26AM +0000, Yuan Can wrote: > > The ftpm_mod_init() returns the driver_register() directly without checking > > its return value, if driver_register() failed, the ftpm_tee_plat_driver is > > not unregistered. > > > > Fix by unregister ftpm_tee_plat_driver when driver_register() failed. > > > > Fixes: 9f1944c23c8c ("tpm_ftpm_tee: register driver on TEE bus") > > Signed-off-by: Yuan Can <yuancan@xxxxxxxxxx> > > --- > > drivers/char/tpm/tpm_ftpm_tee.c | 8 +++++++- > > 1 file changed, 7 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/char/tpm/tpm_ftpm_tee.c b/drivers/char/tpm/tpm_ftpm_tee.c > > index 5c233423c56f..deff23bb54bf 100644 > > --- a/drivers/char/tpm/tpm_ftpm_tee.c > > +++ b/drivers/char/tpm/tpm_ftpm_tee.c > > @@ -397,7 +397,13 @@ static int __init ftpm_mod_init(void) > > if (rc) > > return rc; > > > > - return driver_register(&ftpm_tee_driver.driver); > > + rc = driver_register(&ftpm_tee_driver.driver); > > + if (rc) { > > + platform_driver_unregister(&ftpm_tee_plat_driver); > > + return rc; > > + } > > + > > + return 0; > > } > > > > static void __exit ftpm_mod_exit(void) > > -- > > 2.17.1 > > > > Acked-by: Jarkko Sakkinen <jarkko@xxxxxxxxxx> > > BR, Jarkko