diff options
author | Simon Glass <sjg@chromium.org> | 2013-06-11 11:14:52 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-26 10:18:56 -0400 |
commit | d8819f94d58d8c94c619431bc34232a52b2d9a6b (patch) | |
tree | e23d626a39c88355177444a25799d0e320279d3f /arch/x86/include/asm/global_data.h | |
parent | 5b7dcf311236f45ef9f2b1d6a72080bd3fe99ee5 (diff) | |
download | u-boot-d8819f94d58d8c94c619431bc34232a52b2d9a6b.tar.gz |
x86: Support tracing function
Some changes are needed to x86 timer functions to support tracing. Add
these so that the feature works correctly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/include/asm/global_data.h')
-rw-r--r-- | arch/x86/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 4fdb08090a..9a2056a70f 100644 --- a/arch/x86/include/asm/global_data.h +++ b/arch/x86/include/asm/global_data.h @@ -40,7 +40,7 @@ struct arch_global_data { #include <asm-generic/global_data.h> #ifndef __ASSEMBLY__ -static inline gd_t *get_fs_gd_ptr(void) +static inline __attribute__((no_instrument_function)) gd_t *get_fs_gd_ptr(void) { gd_t *gd_ptr; |