Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 2ea659a9ef488125eb46da6eb571de5eae5c43f6 authored by Linus Torvalds on 13 May 2017, 20:19:49 UTC
Linux 4.12-rc1
Tip revision: 2ea659a
ramnv40.h
#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, u32,
		  struct nvkm_ram **);
#endif
back to top