mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-12 01:20:14 +00:00
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>
11 lines
111 B
C
11 lines
111 B
C
#ifndef LINUX_DEVICE_H
|
|
|
|
struct device {
|
|
void *parent;
|
|
};
|
|
|
|
struct device_driver {
|
|
const char *name;
|
|
};
|
|
#endif
|