1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVIF_OUTP_H__
3 #define __NVIF_OUTP_H__
4 #include <nvif/object.h>
5 struct nvif_disp;
6 
7 struct nvif_outp {
8 	struct nvif_object object;
9 };
10 
11 int nvif_outp_ctor(struct nvif_disp *, const char *name, int id, struct nvif_outp *);
12 void nvif_outp_dtor(struct nvif_outp *);
13 int nvif_outp_load_detect(struct nvif_outp *, u32 loadval);
14 #endif
15