]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix typo in spelling of ATAPI.
authorSteven A. Falco <sfalco@harris.com>
Fri, 15 Aug 2008 19:37:31 +0000 (15:37 -0400)
committerWolfgang Denk <wd@denx.de>
Wed, 20 Aug 2008 23:33:58 +0000 (01:33 +0200)
Correct a small spelling mistake.

Signed-off-by: Steven A. Falco <sfalco@harris.com>
common/cmd_ide.c

index 069100700a8f560d80cffe515dfa9ce5819a4c42..2fcaff8c5a1413acc8302c4cb1ab95d77c54ed39 100644 (file)
@@ -1822,7 +1822,7 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
        c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
 
        if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
-               printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
+               printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
                err=0xFF;
                goto AI_OUT;
        }
@@ -1843,7 +1843,7 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
                        err=(ide_inb(device,ATA_ERROR_REG))>>4;
                        debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
                } else {
-                       printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x)  status 0x%02x\n", ccb[0],c);
+                       printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x)  status 0x%02x\n", ccb[0],c);
                        err=0xFF;
                }
                goto AI_OUT;