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

Commit d568b767 authored by Stuart Yoder's avatar Stuart Yoder Committed by Greg Kroah-Hartman
Browse files

staging: fsl-mc: implement uevent callback and set the modalias



Replace placeholder code in the uevent callback to properly
set the MODALIAS env variable.

Signed-off-by: default avatarStuart Yoder <stuart.yoder@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3d579c35
Loading
Loading
Loading
Loading
+7 −1
Original line number Original line Diff line number Diff line
@@ -78,7 +78,13 @@ static int fsl_mc_bus_match(struct device *dev, struct device_driver *drv)
 */
 */
static int fsl_mc_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
static int fsl_mc_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
{
{
	pr_debug("%s invoked\n", __func__);
	struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);

	if (add_uevent_var(env, "MODALIAS=fsl-mc:v%08Xd%s",
			   mc_dev->obj_desc.vendor,
			   mc_dev->obj_desc.type))
		return -ENOMEM;

	return 0;
	return 0;
}
}