diff mbox

ARM: fix dummy set/modify_domain() to be inline

Message ID 1341518923-20760-1-git-send-email-swarren@wwwdotorg.org (mailing list archive)
State New, archived
Headers show

Commit Message

Stephen Warren July 5, 2012, 8:08 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

Commit 8026dbe "ARM: fix set_domain() macro" converted some macros to
functions, but forgot to make some of the functions inline. This causes:

arch/arm/include/asm/domain.h:81:13: warning: 'set_domain' defined but not used
arch/arm/include/asm/domain.h:82:13: warning: 'modify_domain' defined but not used

Make the functions inline to avoid this.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 arch/arm/include/asm/domain.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Russell King - ARM Linux July 5, 2012, 8:10 p.m. UTC | #1
On Thu, Jul 05, 2012 at 02:08:43PM -0600, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
> 
> Commit 8026dbe "ARM: fix set_domain() macro" converted some macros to
> functions, but forgot to make some of the functions inline. This causes:
> 
> arch/arm/include/asm/domain.h:81:13: warning: 'set_domain' defined but not used
> arch/arm/include/asm/domain.h:82:13: warning: 'modify_domain' defined but not used
> 
> Make the functions inline to avoid this.

Already fixed.
diff mbox

Patch

diff --git a/arch/arm/include/asm/domain.h b/arch/arm/include/asm/domain.h
index 75bd43f..6ddbe44 100644
--- a/arch/arm/include/asm/domain.h
+++ b/arch/arm/include/asm/domain.h
@@ -78,8 +78,8 @@  static inline void set_domain(unsigned val)
 	} while (0)
 
 #else
-static void set_domain(unsigned val) { }
-static void modify_domain(unsigned dom, unsigned type)	{ }
+static inline void set_domain(unsigned val) { }
+static inline void modify_domain(unsigned dom, unsigned type)	{ }
 #endif
 
 /*