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

Commit f865734d authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman
Browse files

greybus: light: fix class-device parent



Greybus bundle drivers should register their class devices as children
to the bundle device that they bind to.

Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent cd414d47
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -724,8 +724,7 @@ static int __gb_lights_flash_led_register(struct gb_channel *channel)
			goto fail;
	}

	ret = led_classdev_flash_register(&connection->bundle->intf->dev,
					  fled);
	ret = led_classdev_flash_register(&connection->bundle->dev, fled);
	if (ret < 0)
		goto fail;

@@ -812,8 +811,7 @@ static int __gb_lights_led_register(struct gb_channel *channel)
	struct led_classdev *cdev = get_channel_cdev(channel);
	int ret;

	ret = led_classdev_register(&connection->bundle->intf->dev,
				    cdev);
	ret = led_classdev_register(&connection->bundle->dev, cdev);
	if (ret < 0)
		channel->led = NULL;
	else