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
nexedi
linux
Commits
09c716ed
Commit
09c716ed
authored
Apr 25, 2003
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AGPGART] Move function prototypes to headers.
parent
91088907
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
drivers/char/agp/agp.h
drivers/char/agp/agp.h
+8
-2
drivers/char/agp/backend.c
drivers/char/agp/backend.c
+0
-2
No files found.
drivers/char/agp/agp.h
View file @
09c716ed
...
...
@@ -373,6 +373,14 @@ struct agp_driver {
};
/* Frontend routines. */
int
agp_frontend_initialize
(
void
);
void
agp_frontend_cleanup
(
void
);
/* Backend routines. */
int
agp_register_driver
(
struct
agp_driver
*
drv
);
int
agp_unregister_driver
(
struct
agp_driver
*
drv
);
/* Generic routines. */
void
agp_generic_enable
(
u32
mode
);
int
agp_generic_create_gatt_table
(
void
);
...
...
@@ -388,8 +396,6 @@ int agp_generic_suspend(void);
void
agp_generic_resume
(
void
);
void
agp_free_key
(
int
key
);
int
agp_num_entries
(
void
);
int
agp_register_driver
(
struct
agp_driver
*
drv
);
int
agp_unregister_driver
(
struct
agp_driver
*
drv
);
u32
agp_collect_device_status
(
u32
mode
,
u32
command
);
void
agp_device_command
(
u32
command
,
int
agp_v3
);
int
agp_3_0_node_enable
(
u32
mode
,
u32
minor
);
...
...
drivers/char/agp/backend.c
View file @
09c716ed
...
...
@@ -219,8 +219,6 @@ static int agp_power(struct pm_dev *dev, pm_request_t rq, void *data)
return
0
;
}
extern
int
agp_frontend_initialize
(
void
);
extern
void
agp_frontend_cleanup
(
void
);
static
const
drm_agp_t
drm_agp
=
{
&
agp_free_memory
,
...
...
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