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
5b5c3dcb
Commit
5b5c3dcb
authored
May 23, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EXPORT_SYMBOL: Remove EXPORT_NO_SYMBOLS from arch/*
parent
6cd25474
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
0 additions
and
18 deletions
+0
-18
arch/alpha/kernel/srm_env.c
arch/alpha/kernel/srm_env.c
+0
-1
arch/i386/kernel/apm.c
arch/i386/kernel/apm.c
+0
-2
arch/i386/kernel/cpuid.c
arch/i386/kernel/cpuid.c
+0
-2
arch/i386/kernel/microcode.c
arch/i386/kernel/microcode.c
+0
-1
arch/i386/kernel/msr.c
arch/i386/kernel/msr.c
+0
-2
arch/mips64/sgi-ip27/ip27-rtc.c
arch/mips64/sgi-ip27/ip27-rtc.c
+0
-1
arch/ppc/iSeries/rtc.c
arch/ppc/iSeries/rtc.c
+0
-1
arch/ppc64/kernel/rtc.c
arch/ppc64/kernel/rtc.c
+0
-1
arch/sparc64/kernel/binfmt_aout32.c
arch/sparc64/kernel/binfmt_aout32.c
+0
-2
arch/sparc64/solaris/misc.c
arch/sparc64/solaris/misc.c
+0
-1
arch/x86_64/kernel/cpuid.c
arch/x86_64/kernel/cpuid.c
+0
-2
arch/x86_64/kernel/msr.c
arch/x86_64/kernel/msr.c
+0
-2
No files found.
arch/alpha/kernel/srm_env.c
View file @
5b5c3dcb
...
...
@@ -65,7 +65,6 @@
MODULE_AUTHOR
(
"Jan-Benedict Glaw <jbglaw@lug-owl.de>"
);
MODULE_DESCRIPTION
(
"Accessing Alpha SRM environment through procfs interface"
);
MODULE_LICENSE
(
"GPL"
);
EXPORT_NO_SYMBOLS
;
typedef
struct
_srm_env
{
char
*
name
;
...
...
arch/i386/kernel/apm.c
View file @
5b5c3dcb
...
...
@@ -2025,5 +2025,3 @@ MODULE_PARM_DESC(idle_threshold,
MODULE_PARM
(
idle_period
,
"i"
);
MODULE_PARM_DESC
(
idle_period
,
"Period (in sec/100) over which to caculate the idle percentage"
);
EXPORT_NO_SYMBOLS
;
arch/i386/kernel/cpuid.c
View file @
5b5c3dcb
...
...
@@ -171,8 +171,6 @@ void __exit cpuid_exit(void)
module_init
(
cpuid_init
);
module_exit
(
cpuid_exit
)
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"H. Peter Anvin <hpa@zytor.com>"
);
MODULE_DESCRIPTION
(
"x86 generic CPUID driver"
);
MODULE_LICENSE
(
"GPL"
);
arch/i386/kernel/microcode.c
View file @
5b5c3dcb
...
...
@@ -80,7 +80,6 @@ static spinlock_t microcode_update_lock = SPIN_LOCK_UNLOCKED;
MODULE_DESCRIPTION
(
"Intel CPU (IA-32) microcode update driver"
);
MODULE_AUTHOR
(
"Tigran Aivazian <tigran@veritas.com>"
);
MODULE_LICENSE
(
"GPL"
);
EXPORT_NO_SYMBOLS
;
#define MICRO_DEBUG 0
...
...
arch/i386/kernel/msr.c
View file @
5b5c3dcb
...
...
@@ -272,8 +272,6 @@ void __exit msr_exit(void)
module_init
(
msr_init
);
module_exit
(
msr_exit
)
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"H. Peter Anvin <hpa@zytor.com>"
);
MODULE_DESCRIPTION
(
"x86 generic MSR driver"
);
MODULE_LICENSE
(
"GPL"
);
arch/mips64/sgi-ip27/ip27-rtc.c
View file @
5b5c3dcb
...
...
@@ -222,7 +222,6 @@ static void __exit rtc_exit (void)
module_init
(
rtc_init
);
module_exit
(
rtc_exit
);
EXPORT_NO_SYMBOLS
;
/*
* Info exported via "/proc/rtc".
...
...
arch/ppc/iSeries/rtc.c
View file @
5b5c3dcb
...
...
@@ -209,7 +209,6 @@ static void __exit rtc_exit (void)
module_init
(
rtc_init
);
module_exit
(
rtc_exit
);
EXPORT_NO_SYMBOLS
;
/*
* Info exported via "/proc/driver/rtc".
...
...
arch/ppc64/kernel/rtc.c
View file @
5b5c3dcb
...
...
@@ -211,7 +211,6 @@ static void __exit rtc_exit (void)
module_init
(
rtc_init
);
module_exit
(
rtc_exit
);
EXPORT_NO_SYMBOLS
;
/*
* Info exported via "/proc/driver/rtc".
...
...
arch/sparc64/kernel/binfmt_aout32.c
View file @
5b5c3dcb
...
...
@@ -408,7 +408,5 @@ static void __exit exit_aout32_binfmt(void)
unregister_binfmt
(
&
aout32_format
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_aout32_binfmt
);
module_exit
(
exit_aout32_binfmt
);
arch/sparc64/solaris/misc.c
View file @
5b5c3dcb
...
...
@@ -725,7 +725,6 @@ extern int init_socksys(void);
MODULE_AUTHOR
(
"Jakub Jelinek (jj@ultra.linux.cz), Patrik Rak (prak3264@ss1000.ms.mff.cuni.cz)"
);
MODULE_DESCRIPTION
(
"Solaris binary emulation module"
);
EXPORT_NO_SYMBOLS
;
#ifdef __sparc_v9__
extern
u32
tl0_solaris
[
8
];
...
...
arch/x86_64/kernel/cpuid.c
View file @
5b5c3dcb
...
...
@@ -171,8 +171,6 @@ void __exit cpuid_exit(void)
module_init
(
cpuid_init
);
module_exit
(
cpuid_exit
)
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"H. Peter Anvin <hpa@zytor.com>"
);
MODULE_DESCRIPTION
(
"x86 generic CPUID driver"
);
MODULE_LICENSE
(
"GPL"
);
arch/x86_64/kernel/msr.c
View file @
5b5c3dcb
...
...
@@ -272,8 +272,6 @@ void __exit msr_exit(void)
module_init
(
msr_init
);
module_exit
(
msr_exit
)
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"H. Peter Anvin <hpa@zytor.com>"
);
MODULE_DESCRIPTION
(
"x86 generic MSR driver"
);
MODULE_LICENSE
(
"GPL"
);
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