summaryrefslogtreecommitdiffstats
path: root/include/linux/virtio_ids.h
diff options
context:
space:
mode:
authorFernando Luis Vazquez Cao2009-07-31 08:25:56 +0200
committerRusty Russell2009-09-23 14:56:32 +0200
commit3ca4f5ca73057a617f9444a91022d7127041970a (patch)
tree382659da29ad0a2e9878df6c7c4204913ab642e7 /include/linux/virtio_ids.h
parentvirtio: get rid of redundant VIRTIO_ID_9P definition (diff)
downloadkernel-qcow2-linux-3ca4f5ca73057a617f9444a91022d7127041970a.tar.gz
kernel-qcow2-linux-3ca4f5ca73057a617f9444a91022d7127041970a.tar.xz
kernel-qcow2-linux-3ca4f5ca73057a617f9444a91022d7127041970a.zip
virtio: add virtio IDs file
Virtio IDs are spread all over the tree which makes assigning new IDs bothersome. Putting them together should make the process less error-prone. Signed-off-by: Fernando Luis Vazquez Cao <fernando@oss.ntt.co.jp> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/virtio_ids.h')
-rw-r--r--include/linux/virtio_ids.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/virtio_ids.h b/include/linux/virtio_ids.h
new file mode 100644
index 000000000000..06660c0a78d7
--- /dev/null
+++ b/include/linux/virtio_ids.h
@@ -0,0 +1,17 @@
+#ifndef _LINUX_VIRTIO_IDS_H
+#define _LINUX_VIRTIO_IDS_H
+/*
+ * Virtio IDs
+ *
+ * This header is BSD licensed so anyone can use the definitions to implement
+ * compatible drivers/servers.
+ */
+
+#define VIRTIO_ID_NET 1 /* virtio net */
+#define VIRTIO_ID_BLOCK 2 /* virtio block */
+#define VIRTIO_ID_CONSOLE 3 /* virtio console */
+#define VIRTIO_ID_RNG 4 /* virtio ring */
+#define VIRTIO_ID_BALLOON 5 /* virtio balloon */
+#define VIRTIO_ID_9P 9 /* 9p virtio console */
+
+#endif /* _LINUX_VIRTIO_IDS_H */