[U-Boot] [PATCH 2/2] common: fix inline--weak error spotted by gcc 4.4

cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
removing the inline attribute fixes it.
Signed-off-by: Kim Phillips kim.phillips@freescale.com --- common/cmd_ide.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 782ad1c..d86bf37 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -532,7 +532,7 @@ __ide_outb(int dev, int port, unsigned char val) dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port))); outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port))); } -void inline ide_outb (int dev, int port, unsigned char val) +void ide_outb (int dev, int port, unsigned char val) __attribute__((weak, alias("__ide_outb")));
unsigned char inline @@ -544,7 +544,7 @@ __ide_inb(int dev, int port) dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val); return val; } -unsigned char inline ide_inb(int dev, int port) +unsigned char ide_inb(int dev, int port) __attribute__((weak, alias("__ide_inb")));
#ifdef CONFIG_TUNE_PIO

Dear Kim Phillips,
In message 20090519125336.7761f522.kim.phillips@freescale.com you wrote:
cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
removing the inline attribute fixes it.
Signed-off-by: Kim Phillips kim.phillips@freescale.com
common/cmd_ide.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Applied (to master) as agreed.
Best regards,
Wolfgang Denk
participants (2)
-
Kim Phillips
-
Wolfgang Denk