From: Jeff Mahoney <jeffm@suse.com>
To: linuxppc-dev@ozlabs.org
Subject: [PATCH] powerpc: Build fix for mpc52xx
Date: Wed, 10 Mar 2010 16:03:05 -0500 [thread overview]
Message-ID: <4B980909.7050501@suse.com> (raw)
mpc52xx_gpt_wdt_setup is defined as 0, which causes the following build
failure with gcc 4.5, since it's built with -Werror.
arch/powerpc/platforms/52xx/mpc52xx_gpt.c:761:3: error: statement with no effect
Defining it as do { } while(0) fixes the problem.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
+++ b/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
@@ -711,7 +711,7 @@ static int __devinit mpc52xx_gpt_wdt_ini
return 0;
}
-#define mpc52xx_gpt_wdt_setup(x, y) (0)
+#define mpc52xx_gpt_wdt_setup(x, y) do { } while(0)
#endif /* CONFIG_MPC5200_WDT */
--
Jeff Mahoney
SUSE Labs
next reply other threads:[~2010-03-10 21:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-10 21:03 Jeff Mahoney [this message]
2010-03-18 14:11 ` [PATCH] powerpc: Build fix for mpc52xx Grant Likely
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B980909.7050501@suse.com \
--to=jeffm@suse.com \
--cc=linuxppc-dev@ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.