Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: ce9ecca0238b140b88f43859b211c9fdfd8e5b70 authored by Linus Torvalds on 17 September 2023, 21:40:24 UTC
Linux 6.6-rc2
Tip revision: ce9ecca
ramnv40.h
/* SPDX-License-Identifier: MIT */
#ifndef __NV40_FB_RAM_H__
#define __NV40_FB_RAM_H__
#define nv40_ram(p) container_of((p), struct nv40_ram, base)
#include "ram.h"

struct nv40_ram {
	struct nvkm_ram base;
	u32 ctrl;
	u32 coef;
};

int nv40_ram_new_(struct nvkm_fb *fb, enum nvkm_ram_type, u64,
		  struct nvkm_ram **);
#endif
back to top