From: Simon Glass Date: Fri, 10 Oct 2014 13:49:14 +0000 (-0600) Subject: dm: x86: Remove ebp assembler warning in zimage.c X-Git-Tag: v2015.01-rc1~129^2~15 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9c284ffd93cda1e434eeece0d95698157d00fe18;p=u-boot 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 --- diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 2f0e92f123..b1902834e8 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" ); }