]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nouveau_sysfs.h
Merge tag 'jfs-3.20' of git://github.com/kleikamp/linux-shaggy
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nouveau_sysfs.h
1 #ifndef __NOUVEAU_SYSFS_H__
2 #define __NOUVEAU_SYSFS_H__
3
4 #include "nouveau_drm.h"
5
6 struct nouveau_sysfs {
7         struct nvif_object ctrl;
8 };
9
10 static inline struct nouveau_sysfs *
11 nouveau_sysfs(struct drm_device *dev)
12 {
13         return nouveau_drm(dev)->sysfs;
14 }
15
16 int  nouveau_sysfs_init(struct drm_device *);
17 void nouveau_sysfs_fini(struct drm_device *);
18
19 extern int nouveau_pstate;
20
21 #endif