Commit e2bf801e authored by Stefan Brüns's avatar Stefan Brüns Committed by Maxime Ripard

sunxi-rsb: Include OF based modalias in device uevent

Include the OF-based modalias in the uevent sent when registering devices
on the sunxi RSB bus, so that user space has a chance to autoload the
kernel module for the device.

Fixes a regression caused by commit 3f241bfa ("arm64: allwinner: a64:
pine64: Use dcdc1 regulator for mmc0"). When the axp20x-rsb module for
the AXP803 PMIC is built as a module, it is not loaded and the system
ends up with an disfunctional MMC controller.

Fixes: d787dcdb ("bus: sunxi-rsb: Add driver for Allwinner Reduced Serial Bus")
Cc: stable <stable@vger.kernel.org> # 4.4.x 7a3b7cd3 of: device: Export of_device_{get_modalias, uvent_modalias} to modules
Acked-by: default avatarChen-Yu Tsai <wens@csie.org>
Signed-off-by: default avatarStefan Brüns <stefan.bruens@rwth-aachen.de>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
parent bdfe4ceb
...@@ -178,6 +178,7 @@ static struct bus_type sunxi_rsb_bus = { ...@@ -178,6 +178,7 @@ static struct bus_type sunxi_rsb_bus = {
.match = sunxi_rsb_device_match, .match = sunxi_rsb_device_match,
.probe = sunxi_rsb_device_probe, .probe = sunxi_rsb_device_probe,
.remove = sunxi_rsb_device_remove, .remove = sunxi_rsb_device_remove,
.uevent = of_device_uevent_modalias,
}; };
static void sunxi_rsb_dev_release(struct device *dev) static void sunxi_rsb_dev_release(struct device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment