Fix:
cmd_ide.c: In function 'ide_ident':
cmd_ide.c:988:6: warning: variable 'do_retry' set but not used
[-Wunused-but-set-variable]
Delete the unused variable.
Signed-off-by: Wolfgang Denk <wd@denx.de>
 
 #ifdef CONFIG_ATAPI
        int retries = 0;
-       int do_retry = 0;
 #endif
 
 #ifdef CONFIG_TUNE_PIO
        dev_desc->if_type = IF_TYPE_IDE;
 #ifdef CONFIG_ATAPI
 
-       do_retry = 0;
        retries = 0;
 
        /* Warning: This will be tricky to read */