Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools/virtio: add device, device_driver stubs

Add stubs needed by virtio.h

Message-ID: <0fabf13f6ea812ebc73b1c919fb17d4dec1545db.1764873799.git.mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

+8
+8
tools/virtio/linux/device.h
··· 1 1 #ifndef LINUX_DEVICE_H 2 + 3 + struct device { 4 + void *parent; 5 + }; 6 + 7 + struct device_driver { 8 + const char *name; 9 + }; 2 10 #endif