summaryrefslogtreecommitdiff
path: root/tools/virtio/linux/device.h
blob: abf100cb0023a977d53f400f089d8924b69273a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LINUX_DEVICE_H
#define LINUX_DEVICE_H

struct device {
	void *parent;
};

struct device_driver {
	const char *name;
};
#endif