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

struct device {
	void *parent;
};

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