Remove double-blank lines

This commit is contained in:
Ben Gras 2005-08-22 15:17:30 +00:00
parent 872687ddfc
commit 3aca81a22a

View File

@ -18,8 +18,6 @@
#include <minix/keymap.h> #include <minix/keymap.h>
#include <sys/ioc_disk.h> #include <sys/ioc_disk.h>
#define ATAPI_DEBUG 0 /* To debug ATAPI code. */ #define ATAPI_DEBUG 0 /* To debug ATAPI code. */
/* I/O Ports used by winchester disk controllers. */ /* I/O Ports used by winchester disk controllers. */
@ -133,7 +131,6 @@ struct command {
u8_t command; u8_t command;
}; };
/* Error codes */ /* Error codes */
#define ERR (-1) /* general error */ #define ERR (-1) /* general error */
#define ERR_BAD_SECTOR (-2) /* block marked bad detected */ #define ERR_BAD_SECTOR (-2) /* block marked bad detected */
@ -234,7 +231,6 @@ FORWARD _PROTOTYPE( int atapi_transfer, (int proc_nr, int opcode,
off_t position, iovec_t *iov, unsigned nr_req) ); off_t position, iovec_t *iov, unsigned nr_req) );
#endif #endif
/* Entry points to this driver. */ /* Entry points to this driver. */
PRIVATE struct driver w_dtab = { PRIVATE struct driver w_dtab = {
w_name, /* current device's name */ w_name, /* current device's name */
@ -252,7 +248,6 @@ PRIVATE struct driver w_dtab = {
w_other /* catch-all for unrecognized commands and ioctls */ w_other /* catch-all for unrecognized commands and ioctls */
}; };
/*===========================================================================* /*===========================================================================*
* at_winchester_task * * at_winchester_task *
*===========================================================================*/ *===========================================================================*/
@ -263,7 +258,6 @@ PUBLIC void main()
driver_task(&w_dtab); driver_task(&w_dtab);
} }
/*============================================================================* /*============================================================================*
* init_params * * init_params *
*============================================================================*/ *============================================================================*/
@ -315,7 +309,6 @@ PRIVATE void init_params()
env_parse("ata_std_timeout", "d", 0, &w_standard_timeouts, 0, 1); env_parse("ata_std_timeout", "d", 0, &w_standard_timeouts, 0, 1);
} }
/*============================================================================* /*============================================================================*
* w_do_open * * w_do_open *
*============================================================================*/ *============================================================================*/
@ -393,7 +386,6 @@ message *m_ptr;
return(OK); return(OK);
} }
/*===========================================================================* /*===========================================================================*
* w_prepare * * w_prepare *
*===========================================================================*/ *===========================================================================*/
@ -419,7 +411,6 @@ int device;
return(w_dv); return(w_dv);
} }
/*===========================================================================* /*===========================================================================*
* w_identify * * w_identify *
*===========================================================================*/ *===========================================================================*/
@ -533,7 +524,6 @@ PRIVATE int w_identify()
return(OK); return(OK);
} }
/*===========================================================================* /*===========================================================================*
* w_name * * w_name *
*===========================================================================*/ *===========================================================================*/
@ -642,7 +632,6 @@ PRIVATE int w_specify()
return(OK); return(OK);
} }
/*===========================================================================* /*===========================================================================*
* w_transfer * * w_transfer *
*===========================================================================*/ *===========================================================================*/
@ -769,7 +758,6 @@ unsigned nr_req; /* length of request vector */
return(OK); return(OK);
} }
/*============================================================================* /*============================================================================*
* com_out * * com_out *
*============================================================================*/ *============================================================================*/
@ -821,7 +809,6 @@ struct command *cmd; /* Command block */
return(OK); return(OK);
} }
/*===========================================================================* /*===========================================================================*
* w_need_reset * * w_need_reset *
*===========================================================================*/ *===========================================================================*/
@ -836,7 +823,6 @@ PRIVATE void w_need_reset()
} }
} }
/*============================================================================* /*============================================================================*
* w_do_close * * w_do_close *
*============================================================================*/ *============================================================================*/
@ -854,7 +840,6 @@ message *m_ptr;
return(OK); return(OK);
} }
/*============================================================================* /*============================================================================*
* com_simple * * com_simple *
*============================================================================*/ *============================================================================*/
@ -871,7 +856,6 @@ struct command *cmd; /* Command block */
return(r); return(r);
} }
/*===========================================================================* /*===========================================================================*
* w_timeout * * w_timeout *
*===========================================================================*/ *===========================================================================*/
@ -902,7 +886,6 @@ PRIVATE void w_timeout(void)
} }
} }
/*===========================================================================* /*===========================================================================*
* w_reset * * w_reset *
*===========================================================================*/ *===========================================================================*/
@ -942,7 +925,6 @@ PRIVATE int w_reset()
return(OK); return(OK);
} }
/*============================================================================* /*============================================================================*
* w_intr_wait * * w_intr_wait *
*============================================================================*/ *============================================================================*/
@ -972,7 +954,6 @@ PRIVATE void w_intr_wait()
} }
} }
/*============================================================================* /*============================================================================*
* at_intr_wait * * at_intr_wait *
*============================================================================*/ *============================================================================*/
@ -998,7 +979,6 @@ PRIVATE int at_intr_wait()
return(r); return(r);
} }
/*==========================================================================* /*==========================================================================*
* w_waitfor * * w_waitfor *
*==========================================================================*/ *==========================================================================*/
@ -1027,7 +1007,6 @@ int value; /* required status */
return(0); return(0);
} }
/*============================================================================* /*============================================================================*
* w_geometry * * w_geometry *
*============================================================================*/ *============================================================================*/
@ -1047,7 +1026,6 @@ struct partition *entry;
} }
} }
#if ENABLE_ATAPI #if ENABLE_ATAPI
/*===========================================================================* /*===========================================================================*
* atapi_open * * atapi_open *