summaryrefslogtreecommitdiff
path: root/lib/priv.h
blob: cae0acd755015a29de54efc66d58e59ffdce4720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __OS_PRIV_H__
#define __OS_PRIV_H__

#include <core/device.h>

#include <pthread.h>
#include <unistd.h>

struct os_device {
	struct nvkm_device base;
	struct list_head head;
	char *cfg;
	char *dbg;
};

#endif