diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-10 07:49:14 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-23 19:45:28 -0600 |
commit | 9c284ffd93cda1e434eeece0d95698157d00fe18 (patch) | |
tree | dd26b29782a65fcd43cee8d288bdb8a301c094dd | |
parent | 1f77690e164e95fba0423a18b4597fd3ecd2817b (diff) | |
download | u-boot-imx-9c284ffd93cda1e434eeece0d95698157d00fe18.zip u-boot-imx-9c284ffd93cda1e434eeece0d95698157d00fe18.tar.gz u-boot-imx-9c284ffd93cda1e434eeece0d95698157d00fe18.tar.bz2 |
dm: x86: Remove ebp assembler warning in zimage.c
This code generates warnings with recent gcc versions. We really don't need
the clobber specification, so just drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/x86/lib/zimage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 2f0e92f..b190283 100644 --- a/arch/x86/lib/zimage.c +++ b/arch/x86/lib/zimage.c @@ -282,7 +282,6 @@ void boot_zimage(void *setup_base, void *load_address) :: [kernel_entry]"a"(load_address), [boot_params] "S"(setup_base), "b"(0), "D"(0) - : "%ebp" ); } |