Commit aee9041c authored by Jesper Juhl's avatar Jesper Juhl Committed by Linus Torvalds

floppy: remove dead/commented out code from floppy driver

A good initial step for a cleanup seems to me to be getting rid of old dead
code.  This stuff is either commented out or inside '#if 0' so it is not
currently in use at all, let's just get rid of it once and for all.  That's a
few lines less to deal with.
Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 06f748c4
...@@ -768,7 +768,6 @@ static int disk_change(int drive) ...@@ -768,7 +768,6 @@ static int disk_change(int drive)
floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1; floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
} }
/*USETF(FD_DISK_NEWCHANGE); */
return 1; return 1;
} else { } else {
UDRS->last_checked = jiffies; UDRS->last_checked = jiffies;
...@@ -1324,7 +1323,6 @@ static void fdc_specify(void) ...@@ -1324,7 +1323,6 @@ static void fdc_specify(void)
if (FDCS->need_configure && FDCS->version >= FDC_82072A) { if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
fdc_configure(); fdc_configure();
FDCS->need_configure = 0; FDCS->need_configure = 0;
/*DPRINT("FIFO enabled\n"); */
} }
switch (raw_cmd->rate & 0x03) { switch (raw_cmd->rate & 0x03) {
...@@ -1919,8 +1917,6 @@ static void floppy_shutdown(unsigned long data) ...@@ -1919,8 +1917,6 @@ static void floppy_shutdown(unsigned long data)
is_alive("floppy shutdown"); is_alive("floppy shutdown");
} }
/*typedef void (*timeout_fn)(unsigned long);*/
/* start motor, check media-changed condition and write protection */ /* start motor, check media-changed condition and write protection */
static int start_motor(void (*function)(void)) static int start_motor(void (*function)(void))
{ {
...@@ -2571,19 +2567,6 @@ static void copy_buffer(int ssize, int max_sector, int max_sector_2) ...@@ -2571,19 +2567,6 @@ static void copy_buffer(int ssize, int max_sector, int max_sector_2)
#endif #endif
} }
#if 0
static inline int check_dma_crossing(char *start,
unsigned long length, char *message)
{
if (CROSS_64KB(start, length)) {
printk("DMA xfer crosses 64KB boundary in %s %p-%p\n",
message, start, start + length);
return 1;
} else
return 0;
}
#endif
/* work around a bug in pseudo DMA /* work around a bug in pseudo DMA
* (on some FDCs) pseudo DMA does not stop when the CPU stops * (on some FDCs) pseudo DMA does not stop when the CPU stops
* sending data. Hence we need a different way to signal the * sending data. Hence we need a different way to signal the
...@@ -2781,9 +2764,7 @@ static int make_raw_rw_request(void) ...@@ -2781,9 +2764,7 @@ static int make_raw_rw_request(void)
*/ */
if (!direct || if (!direct ||
(indirect * 2 > direct * 3 && (indirect * 2 > direct * 3 &&
*errors < DP->max_errors.read_track && *errors < DP->max_errors.read_track && ((!probing
/*!TESTF(FD_NEED_TWADDLE) && */
((!probing
|| (DP->read_track & (1 << DRS->probed_format)))))) { || (DP->read_track & (1 << DRS->probed_format)))))) {
max_size = current_req->nr_sectors; max_size = current_req->nr_sectors;
} else { } else {
...@@ -2796,10 +2777,6 @@ static int make_raw_rw_request(void) ...@@ -2796,10 +2777,6 @@ static int make_raw_rw_request(void)
indirect, direct, fsector_t); indirect, direct, fsector_t);
return 0; return 0;
} }
/* check_dma_crossing(raw_cmd->kernel_data,
raw_cmd->length,
"end of make_raw_request [1]");*/
virtualdmabug_workaround(); virtualdmabug_workaround();
return 2; return 2;
} }
...@@ -2849,8 +2826,6 @@ static int make_raw_rw_request(void) ...@@ -2849,8 +2826,6 @@ static int make_raw_rw_request(void)
raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1; raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
raw_cmd->length <<= 9; raw_cmd->length <<= 9;
#ifdef FLOPPY_SANITY_CHECK #ifdef FLOPPY_SANITY_CHECK
/*check_dma_crossing(raw_cmd->kernel_data, raw_cmd->length,
"end of make_raw_request"); */
if ((raw_cmd->length < current_count_sectors << 9) || if ((raw_cmd->length < current_count_sectors << 9) ||
(raw_cmd->kernel_data != current_req->buffer && (raw_cmd->kernel_data != current_req->buffer &&
CT(COMMAND) == FD_WRITE && CT(COMMAND) == FD_WRITE &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment