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

Commit bda53cd5 authored by Mark McLoughlin's avatar Mark McLoughlin Committed by Rusty Russell
Browse files

lguest: struct device - replace bus_id with dev_name()



bus_id is gradually being removed, so use dev_name() instead.

Signed-off-by: default avatarMark McLoughlin <markmc@redhat.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 58a24566
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -272,7 +272,7 @@ static struct virtqueue *lg_find_vq(struct virtio_device *vdev,
	 * the interrupt as a source of randomness: it'd be nice to have that
	 * the interrupt as a source of randomness: it'd be nice to have that
	 * back.. */
	 * back.. */
	err = request_irq(lvq->config.irq, vring_interrupt, IRQF_SHARED,
	err = request_irq(lvq->config.irq, vring_interrupt, IRQF_SHARED,
			  vdev->dev.bus_id, vq);
			  dev_name(&vdev->dev), vq);
	if (err)
	if (err)
		goto destroy_vring;
		goto destroy_vring;