diff options
Diffstat (limited to 'common/cmd_ide.c')
| -rw-r--r-- | common/cmd_ide.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 3f18b00d1..331041c16 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -771,7 +771,7 @@ ide_outb(int dev, int port, unsigned char val)  {  	PRINTF ("ide_outb (dev= %d, port= %d, val= 0x%02x) : @ 0x%08lx\n",  		dev, port, val, (ATA_CURR_BASE(dev)+port)); -     +  	/* Ensure I/O operations complete */  	__asm__ volatile("eieio");  	*((uchar *)(ATA_CURR_BASE(dev)+port)) = val;  |