Skip to content

Commit 7d59313

Browse files
committed
ia64,export.h: replace EXPORT_DATA_SYMBOL* with EXPORT_SYMBOL*
With the previous refactoring, you can always use EXPORT_SYMBOL*. Replace two instances in ia64, then remove EXPORT_DATA_SYMBOL*. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
1 parent ddb5cdb commit 7d59313

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

arch/ia64/kernel/head.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ RestRR: \
170170
__PAGE_ALIGNED_DATA
171171

172172
.global empty_zero_page
173-
EXPORT_DATA_SYMBOL_GPL(empty_zero_page)
173+
EXPORT_SYMBOL_GPL(empty_zero_page)
174174
empty_zero_page:
175175
.skip PAGE_SIZE
176176

arch/ia64/kernel/ivt.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
.align 32768 // align on 32KB boundary
8989
.global ia64_ivt
90-
EXPORT_DATA_SYMBOL(ia64_ivt)
90+
EXPORT_SYMBOL(ia64_ivt)
9191
ia64_ivt:
9292
/////////////////////////////////////////////////////////////////////////////////////////
9393
// 0x0000 Entry 0 (size 64 bundles) VHPT Translation (8,20,47)

include/asm-generic/export.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,4 @@
88
*/
99
#include <linux/export.h>
1010

11-
#define EXPORT_DATA_SYMBOL(name) EXPORT_SYMBOL(name)
12-
#define EXPORT_DATA_SYMBOL_GPL(name) EXPORT_SYMBOL_GPL(name)
13-
1411
#endif

0 commit comments

Comments
 (0)