From 54e822f9590cc6c70411bd8cabd42236e07a2aa7 Mon Sep 17 00:00:00 2001 From: Peter Tyser Date: Mon, 20 Apr 2009 11:09:05 -0500 Subject: Replace __asm references with __asm__ __asm__ follows gcc's documented syntax and is generally more common than __asm. This change is only asthetic and should not affect functionality. Signed-off-by: Peter Tyser --- cpu/ixp/npe/IxFeatureCtrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpu/ixp') diff --git a/cpu/ixp/npe/IxFeatureCtrl.c b/cpu/ixp/npe/IxFeatureCtrl.c index e02aabfb4..2e196a19a 100644 --- a/cpu/ixp/npe/IxFeatureCtrl.c +++ b/cpu/ixp/npe/IxFeatureCtrl.c @@ -317,7 +317,7 @@ ixFeatureCtrlProductIdRead () /* Use ARM instruction to move register0 from coprocessor to ARM register */ #ifndef __wince - __asm("mrc p15, 0, %0, cr0, cr0, 0;" : "=r"(pdId) :); + __asm__("mrc p15, 0, %0, cr0, cr0, 0;" : "=r"(pdId) :); #else #ifndef IN_KERNEL -- cgit v1.2.3