Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76aa3de7 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski
Browse files

eeprom: at24: fix retrieving the at24_chip_data structure



Commit feb2f19b ("eeprom: at24: move platform data processing into
a separate routine") introduced a bug where we incorrectly retireve the
at24_chip_data structure. Remove the unnecessary ampersand operator.

Fixes: feb2f19b ("eeprom: at24: move platform data processing into a separate routine")
Reported-by: default avatarVadim Pasternak <vadimp@mellanox.com>
Signed-off-by: default avatarBartosz Golaszewski <brgl@bgdev.pl>
parent 75bc37fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -518,7 +518,7 @@ static int at24_get_pdata(struct device *dev, struct at24_platform_data *pdata)
	if (of_node && of_match_device(at24_of_match, dev))
		cdata = of_device_get_match_data(dev);
	else if (id)
		cdata = (void *)&id->driver_data;
		cdata = (void *)id->driver_data;
	else
		cdata = acpi_device_get_match_data(dev);