1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef __OS_PRIV_H__ #define __OS_PRIV_H__ #include <core/device.h> #include <pthread.h> #include <unistd.h> struct os_device { struct nouveau_device base; struct list_head head; char *name; char *cfg; char *dbg; }; #endif