• Uwe Kleine-König's avatar
    crypto: stm32/cryp - Convert to platform remove callback returning void · 88b01c8a
    Uwe Kleine-König authored
    The .remove() callback for a platform driver returns an int which makes
    many driver authors wrongly assume it's possible to do error handling by
    returning an error code. However the value returned is (mostly) ignored
    and this typically results in resource leaks. To improve here there is a
    quest to make the remove callback return void. In the first step of this
    quest all drivers are converted to .remove_new() which already returns
    void.
    
    The driver adapted here suffered from this wrong assumption and had
    several error paths resulting in resource leaks.
    
    The check for cryp being non-NULL is harmless. This can never happen as
    .remove() is only called after .probe() completed successfully and in
    that case drvdata was set to a non-NULL value. So this check can just be
    dropped.
    
    If pm_runtime_get() fails, the other resources held by the device must
    still be freed. Only clk_disable_unprepare() should be skipped as the
    pm_runtime_get() failed to call clk_prepare_enable().
    
    After these changes the remove function returns zero unconditionally and
    can trivially be converted to the prototype required for .remove_new().
    Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
    Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
    88b01c8a
stm32-cryp.c 52.7 KB