summaryrefslogtreecommitdiff
path: root/lib/priv.h
blob: 00e3046802e00ef5ce7e9bf8ca2925e5ca37b708 (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 nvkm_device base;
	struct list_head head;
	char *name;
	char *cfg;
	char *dbg;
};

#endif