summaryrefslogtreecommitdiff
path: root/lib/priv.h
blob: f9a12f23b08554fcbe71653df05f3e4fd409b8d2 (plain)
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