[PATCH] make lots of things static
Another large rollup of various patches from Adrian which make things static where they were needlessly exported. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c31403a1f5
commit
408b664a7d
@@ -97,7 +97,7 @@ void agp_backend_release(struct agp_bridge_data *bridge)
|
||||
EXPORT_SYMBOL(agp_backend_release);
|
||||
|
||||
|
||||
struct { int mem, agp; } maxes_table[] = {
|
||||
static struct { int mem, agp; } maxes_table[] = {
|
||||
{0, 0},
|
||||
{32, 4},
|
||||
{64, 28},
|
||||
@@ -322,7 +322,7 @@ static int __init agp_init(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void __exit agp_exit(void)
|
||||
static void __exit agp_exit(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user