mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 16:10:58 +00:00
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>
This commit is contained in:
parent
1f77690e16
commit
9c284ffd93
1 changed files with 0 additions and 1 deletions
|
@ -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"
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue