Files
linux-stable-mirror/tools/virtio/linux/device.h
T
2025-12-24 08:02:56 -05:00

11 lines
111 B
C

#ifndef LINUX_DEVICE_H
struct device {
void *parent;
};
struct device_driver {
const char *name;
};
#endif