mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 05:16:47 +07:00
3ca4f5ca73
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>
11 lines
321 B
C
11 lines
321 B
C
#ifndef _LINUX_VIRTIO_9P_H
|
|
#define _LINUX_VIRTIO_9P_H
|
|
/* This header is BSD licensed so anyone can use the definitions to implement
|
|
* compatible drivers/servers. */
|
|
#include <linux/virtio_config.h>
|
|
|
|
/* Maximum number of virtio channels per partition (1 for now) */
|
|
#define MAX_9P_CHAN 1
|
|
|
|
#endif /* _LINUX_VIRTIO_9P_H */
|