]> Zhao Yanbai Git Server - minix.git/commitdiff
Make it work without ENABLE_ATAPI
authorBen Gras <ben@minix3.org>
Fri, 16 Sep 2005 09:43:02 +0000 (09:43 +0000)
committerBen Gras <ben@minix3.org>
Fri, 16 Sep 2005 09:43:02 +0000 (09:43 +0000)
drivers/at_wini/at_wini.c

index deddac695df0fb6f821cbc356bf65df354e39f75..3329dbf580bc4c05b1e95129db6d3f47ca2aa840 100644 (file)
 #define REG_CNT_LO          4   /* low byte of cylinder number */
 #define REG_CNT_HI          5   /* high byte of cylinder number */
 #define REG_DRIVE           6   /* drive select */
+#endif
+
 #define REG_STATUS          7   /* status */
 #define   STATUS_BSY            0x80    /* controller busy */
 #define   STATUS_DRDY           0x40    /* drive ready */
 #define   STATUS_CORR           0x04    /* correctable error occurred */
 #define   STATUS_CHECK          0x01    /* check error */
 
+#ifdef ENABLE_ATAPI
 #define   ATAPI_PACKETCMD       0xA0    /* packet command */
 #define   ATAPI_IDENTIFY        0xA1    /* identify drive */
 #define   SCSI_READ10           0x28    /* read from disk */
@@ -1477,6 +1480,9 @@ unsigned cnt;
   return(OK);
 }
 
+
+#endif /* ENABLE_ATAPI */
+
 /*===========================================================================*
  *                             w_other                                      *
  *===========================================================================*/
@@ -1536,7 +1542,6 @@ message *m;
        return EINVAL;
 }
 
-
 /*===========================================================================*
  *                             w_hw_int                                     *
  *===========================================================================*/
@@ -1602,6 +1607,8 @@ char *strerr(int e)
        return str;
 }
 
+#if ENABLE_ATAPI
+
 /*===========================================================================*
  *                             atapi_intr_wait                              *
  *===========================================================================*/