Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
6236de0e
Commit
6236de0e
authored
Apr 28, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DRI CVS merge: move more gamma-only functions away from
generic dri files and into gamma driver files.
parent
8feb324f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
drivers/char/drm/drmP.h
drivers/char/drm/drmP.h
+0
-6
drivers/char/drm/gamma_drv.h
drivers/char/drm/gamma_drv.h
+10
-0
No files found.
drivers/char/drm/drmP.h
View file @
6236de0e
...
...
@@ -735,12 +735,6 @@ extern int DRM(lock_transfer)(drm_device_t *dev,
extern
int
DRM
(
lock_free
)(
drm_device_t
*
dev
,
__volatile__
unsigned
int
*
lock
,
unsigned
int
context
);
extern
int
DRM
(
finish
)(
struct
inode
*
inode
,
struct
file
*
filp
,
unsigned
int
cmd
,
unsigned
long
arg
);
extern
int
DRM
(
flush_unblock
)(
drm_device_t
*
dev
,
int
context
,
drm_lock_flags_t
flags
);
extern
int
DRM
(
flush_block_and_flush
)(
drm_device_t
*
dev
,
int
context
,
drm_lock_flags_t
flags
);
extern
int
DRM
(
notifier
)(
void
*
priv
);
/* Buffer management support (drm_bufs.h) */
...
...
drivers/char/drm/gamma_drv.h
View file @
6236de0e
...
...
@@ -49,6 +49,7 @@ extern int gamma_dma_init( struct inode *inode, struct file *filp,
extern
int
gamma_dma_copy
(
struct
inode
*
inode
,
struct
file
*
filp
,
unsigned
int
cmd
,
unsigned
long
arg
);
extern
int
gamma_do_cleanup_dma
(
drm_device_t
*
dev
);
extern
void
gamma_dma_ready
(
drm_device_t
*
dev
);
extern
void
gamma_dma_quiescent_single
(
drm_device_t
*
dev
);
extern
void
gamma_dma_quiescent_dual
(
drm_device_t
*
dev
);
...
...
@@ -60,6 +61,15 @@ extern int gamma_dma(struct inode *inode, struct file *filp,
extern
int
gamma_find_devices
(
void
);
extern
int
gamma_found
(
void
);
/* Gamma-specific code pulled from drm_fops.h:
*/
extern
int
DRM
(
finish
)(
struct
inode
*
inode
,
struct
file
*
filp
,
unsigned
int
cmd
,
unsigned
long
arg
);
extern
int
DRM
(
flush_unblock
)(
drm_device_t
*
dev
,
int
context
,
drm_lock_flags_t
flags
);
extern
int
DRM
(
flush_block_and_flush
)(
drm_device_t
*
dev
,
int
context
,
drm_lock_flags_t
flags
);
/* Gamma-specific code pulled from drm_dma.h:
*/
extern
void
DRM
(
clear_next_buffer
)(
drm_device_t
*
dev
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment