mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

GPU-specific support will be added separately. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
14 lines
253 B
C
14 lines
253 B
C
#ifndef __NVKM_FAULT_H__
|
|
#define __NVKM_FAULT_H__
|
|
#include <core/subdev.h>
|
|
|
|
struct nvkm_fault {
|
|
const struct nvkm_fault_func *func;
|
|
struct nvkm_subdev subdev;
|
|
|
|
struct nvkm_fault_buffer *buffer[1];
|
|
int buffer_nr;
|
|
|
|
struct nvkm_event event;
|
|
};
|
|
#endif
|