mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH] fix: commands/bootm.c:346:2: warning: statement with no effect
Date: Sat, 16 Jul 2011 12:42:01 +0200	[thread overview]
Message-ID: <1310812921-3685-1-git-send-email-plagnioj@jcrosoft.com> (raw)

convert enable_interrupts() and disable_interrupts() to static inline
if no IRQ supoprt enable

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 include/common.h |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/include/common.h b/include/common.h
index 491bc98..f3353c8 100644
--- a/include/common.h
+++ b/include/common.h
@@ -116,8 +116,14 @@ void	irq_free_handler   (int);
 void	enable_interrupts  (void);
 int	disable_interrupts (void);
 #else
-#define enable_interrupts() do {} while (0)
-#define disable_interrupts() 0
+static inline void enable_interrupts(void)
+{
+}
+
+static inline int disable_interrupts(void)
+{
+	return 0;
+}
 #endif
 
 /* lib_$(ARCH)/time.c */
-- 
1.7.5.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2011-07-16 10:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-16 10:42 Jean-Christophe PLAGNIOL-VILLARD [this message]
2011-07-18  6:26 ` Sascha Hauer

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=1310812921-3685-1-git-send-email-plagnioj@jcrosoft.com \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox