brintos

brintos / linux-shallow public Read only

0
0
Text · 501 B · 77472b5 Raw
19 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVKM_RAM_NVC0_H__3#define __NVKM_RAM_NVC0_H__4#define gf100_fb(p) container_of((p), struct gf100_fb, base)5#include "priv.h"6 7struct gf100_fb {8	struct nvkm_fb base;9};10 11int gf100_fb_new_(const struct nvkm_fb_func *, struct nvkm_device *, enum nvkm_subdev_type, int,12		  struct nvkm_fb **);13void *gf100_fb_dtor(struct nvkm_fb *);14void gf100_fb_init(struct nvkm_fb *);15void gf100_fb_intr(struct nvkm_fb *);16 17void gm200_fb_init(struct nvkm_fb *base);18#endif19