Patch "usb: typec: tipd: Fix spurious fwnode_handle_put in error path" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    usb: typec: tipd: Fix spurious fwnode_handle_put in error path

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     usb-typec-tipd-fix-spurious-fwnode_handle_put-in-err.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 3848e5fde77b424dc2d8653e86f6dfa4b5ff8ad6
Author: Sven Peter <sven@xxxxxxxxxxxxx>
Date:   Mon Nov 14 18:44:47 2022 +0100

    usb: typec: tipd: Fix spurious fwnode_handle_put in error path
    
    [ Upstream commit 782c70edc4852a5d39be12377a85501546236212 ]
    
    The err_role_put error path always calls fwnode_handle_put to release
    the fwnode. This path can be reached after probe itself has already
    released that fwnode though. Fix that by moving fwnode_handle_put in the
    happy path to the very end.
    
    Fixes: 18a6c866bb19 ("usb: typec: tps6598x: Add USB role switching logic")
    Signed-off-by: Sven Peter <sven@xxxxxxxxxxxxx>
    Reviewed-by: Heikki Krogerus <heikki.krogerus@xxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221114174449.34634-2-sven@xxxxxxxxxxxxx
    Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c
index 28dd5c3b175b..a5fbbae52525 100644
--- a/drivers/usb/typec/tipd/core.c
+++ b/drivers/usb/typec/tipd/core.c
@@ -821,7 +821,6 @@ static int tps6598x_probe(struct i2c_client *client)
 		ret = PTR_ERR(tps->port);
 		goto err_role_put;
 	}
-	fwnode_handle_put(fwnode);
 
 	if (status & TPS_STATUS_PLUG_PRESENT) {
 		ret = tps6598x_read16(tps, TPS_REG_POWER_STATUS, &tps->pwr_status);
@@ -845,6 +844,7 @@ static int tps6598x_probe(struct i2c_client *client)
 	}
 
 	i2c_set_clientdata(client, tps);
+	fwnode_handle_put(fwnode);
 
 	return 0;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux