diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-04-20 11:09:05 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-28 01:02:04 +0200 |
commit | 54e822f9590cc6c70411bd8cabd42236e07a2aa7 (patch) | |
tree | 905330a238ff670819704b223aa36255b4f358b4 /cpu/ixp | |
parent | f9a109b3adc5e8647535357500e2a38f0558b5c2 (diff) | |
download | u-boot-54e822f9590cc6c70411bd8cabd42236e07a2aa7.zip u-boot-54e822f9590cc6c70411bd8cabd42236e07a2aa7.tar.gz u-boot-54e822f9590cc6c70411bd8cabd42236e07a2aa7.tar.bz2 |
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 <ptyser@xes-inc.com>
Diffstat (limited to 'cpu/ixp')
-rw-r--r-- | cpu/ixp/npe/IxFeatureCtrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ixp/npe/IxFeatureCtrl.c b/cpu/ixp/npe/IxFeatureCtrl.c index e02aabf..2e196a1 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 |