projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fac3e79
)
x86: Don't export interrupt handlers with x86_64
author
Simon Glass
<sjg@chromium.org>
Mon, 26 Sep 2016 03:33:31 +0000
(21:33 -0600)
committer
Bin Meng
<bmeng.cn@gmail.com>
Tue, 11 Oct 2016 03:55:33 +0000
(11:55 +0800)
We don't have a way of adjusting these at present so it is best to refuse to
export these functions. This can be implemented later if the API is required.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
include/_exports.h
patch
|
blob
|
history
diff --git
a/include/_exports.h
b/include/_exports.h
index 158470532903cead95df93c8b26df36e3bcf8a56..6ff4364e443d25af802d4dd3c997450bf576a5f5 100644
(file)
--- a/
include/_exports.h
+++ b/
include/_exports.h
@@
-13,7
+13,7
@@
EXPORT_FUNC(putc, void, putc, const char)
EXPORT_FUNC(puts, void, puts, const char *)
EXPORT_FUNC(printf, int, printf, const char*, ...)
-#if
defined(CONFIG_X86
) || defined(CONFIG_PPC)
+#if
(defined(CONFIG_X86) && !defined(CONFIG_X86_64)
) || defined(CONFIG_PPC)
EXPORT_FUNC(irq_install_handler, void, install_hdlr,
int, interrupt_handler_t, void*)