Patch "HID: mcp2221: Set driver data before I2C adapter add" has been added to the 6.6-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

    HID: mcp2221: Set driver data before I2C adapter add

to the 6.6-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:
     hid-mcp2221-set-driver-data-before-i2c-adapter-add.patch
and it can be found in the queue-6.6 subdirectory.

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



commit 3a67241bb8087b5d27be690ac7e6cffbfeb6af75
Author: Hamish Martin <hamish.martin@xxxxxxxxxxxxxxxxxxx>
Date:   Wed Oct 25 16:55:10 2023 +1300

    HID: mcp2221: Set driver data before I2C adapter add
    
    [ Upstream commit f2d4a5834638bbc967371b9168c0b481519f7c5e ]
    
    The process of adding an I2C adapter can invoke I2C accesses on that new
    adapter (see i2c_detect()).
    
    Ensure we have set the adapter's driver data to avoid null pointer
    dereferences in the xfer functions during the adapter add.
    
    This has been noted in the past and the same fix proposed but not
    completed. See:
    https://lore.kernel.org/lkml/ef597e73-ed71-168e-52af-0d19b03734ac@xxxxxxxx/
    
    Signed-off-by: Hamish Martin <hamish.martin@xxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Jiri Kosina <jkosina@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/hid/hid-mcp2221.c b/drivers/hid/hid-mcp2221.c
index 72883e0ce7575..b95f31cf0fa21 100644
--- a/drivers/hid/hid-mcp2221.c
+++ b/drivers/hid/hid-mcp2221.c
@@ -1157,12 +1157,12 @@ static int mcp2221_probe(struct hid_device *hdev,
 	snprintf(mcp->adapter.name, sizeof(mcp->adapter.name),
 			"MCP2221 usb-i2c bridge");
 
+	i2c_set_adapdata(&mcp->adapter, mcp);
 	ret = devm_i2c_add_adapter(&hdev->dev, &mcp->adapter);
 	if (ret) {
 		hid_err(hdev, "can't add usb-i2c adapter: %d\n", ret);
 		return ret;
 	}
-	i2c_set_adapdata(&mcp->adapter, mcp);
 
 #if IS_REACHABLE(CONFIG_GPIOLIB)
 	/* Setup GPIO chip */




[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