repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
posix-clock: Fix return code on the poll method's error path
[linux/fpc-iii.git]
/
drivers
/
gpu
/
drm
/
nouveau
/
nvkm
/
subdev
/
fb
/
ramnv40.h
blob
8a0524566b48681aa137ecfd73065df52ede6679
1
#ifndef __NV40_FB_RAM_H__
2
#define __NV40_FB_RAM_H__
3
#define nv40_ram(p) container_of((p), struct nv40_ram, base)
4
#include
"ram.h"
5
6
struct
nv40_ram
{
7
struct
nvkm_ram base
;
8
u32 ctrl
;
9
u32 coef
;
10
};
11
12
int
nv40_ram_new_
(
struct
nvkm_fb
*
fb
,
enum
nvkm_ram_type
,
u64
,
u32
,
13
struct
nvkm_ram
**);
14
#endif