mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 18:46:45 +07:00
703fa264b1
It can help to remove any ambiguity about which options were passed to Nouveau, especially in case the user had some options set in /etc/modprobe.d/*.conf that he forgot about, as they won't appear in a dmesg. Signed-off-by: Pierre Moreau <pierre.morrow@free.fr> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
22 lines
377 B
C
22 lines
377 B
C
#ifndef __NOUVEAU_SYSFS_H__
|
|
#define __NOUVEAU_SYSFS_H__
|
|
|
|
#include "nouveau_drm.h"
|
|
|
|
struct nouveau_sysfs {
|
|
struct nvif_object ctrl;
|
|
};
|
|
|
|
static inline struct nouveau_sysfs *
|
|
nouveau_sysfs(struct drm_device *dev)
|
|
{
|
|
return nouveau_drm(dev)->sysfs;
|
|
}
|
|
|
|
int nouveau_sysfs_init(struct drm_device *);
|
|
void nouveau_sysfs_fini(struct drm_device *);
|
|
|
|
extern int nouveau_pstate;
|
|
|
|
#endif
|