summaryrefslogtreecommitdiffstats
path: root/board/trab/vfd.c
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-04-20 11:09:05 -0500
committerWolfgang Denk <wd@denx.de>2009-04-28 01:02:04 +0200
commit54e822f9590cc6c70411bd8cabd42236e07a2aa7 (patch)
tree905330a238ff670819704b223aa36255b4f358b4 /board/trab/vfd.c
parentf9a109b3adc5e8647535357500e2a38f0558b5c2 (diff)
downloadblackbird-obmc-uboot-54e822f9590cc6c70411bd8cabd42236e07a2aa7.tar.gz
blackbird-obmc-uboot-54e822f9590cc6c70411bd8cabd42236e07a2aa7.zip
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 'board/trab/vfd.c')
-rw-r--r--board/trab/vfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/vfd.c b/board/trab/vfd.c
index eb506f39b6..37d3aa48e7 100644
--- a/board/trab/vfd.c
+++ b/board/trab/vfd.c
@@ -369,7 +369,7 @@ int vfd_init_clocks (void)
gpio->PCCON = (gpio->PCCON & 0xFFFFFF00); /* configure GPC0...GPC3 as inputs */
/* allow signals to settle */
for (i=0; i<10000; i++) /* udelay isn't working yet at this point! */
- __asm("NOP");
+ __asm__("NOP");
vfd_board_id = (~gpio->PCDAT) & 0x000F; /* read GPC0...GPC3 port pins */
VFD_DISABLE; /* activate blank for the vfd */
OpenPOWER on IntegriCloud