mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
greybus: vibrator: use the bundle struct device instead of the connector
We are removing struct device from the gb_connection structure in the near future. The gb_bundle structure's struct device should be used as a replacement. This patch moves the vibrator driver to use the bundle pointer instead of the connection pointer. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Reviewed-by: Alex Elder <elder@linaro.org>
This commit is contained in:
@@ -111,8 +111,8 @@ static int gb_vibrator_connection_init(struct gb_connection *connection)
|
||||
retval = vib->minor;
|
||||
goto error;
|
||||
}
|
||||
dev = device_create(&vibrator_class, &connection->dev, MKDEV(0, 0), vib,
|
||||
"vibrator%d", vib->minor);
|
||||
dev = device_create(&vibrator_class, &connection->bundle->dev,
|
||||
MKDEV(0, 0), vib, "vibrator%d", vib->minor);
|
||||
if (IS_ERR(dev)) {
|
||||
retval = -EINVAL;
|
||||
goto err_ida_remove;
|
||||
|
||||
Reference in New Issue
Block a user