mirror of https://gitee.com/openkylin/linux.git
drivers/block/floppy.c: remove used once CHECK_READY macro
Signed-off-by: Joe Perches <joe@perches.com> Cc: Stephen Hemminger <shemminger@vyatta.com> Cc: Jens Axboe <jens.axboe@oracle.com> Cc: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a81ee54471
commit
045f983630
|
@ -575,7 +575,6 @@ static void floppy_release_irq_and_dma(void);
|
|||
* reset doesn't need to be tested before sending commands, because
|
||||
* output_byte is automatically disabled when reset is set.
|
||||
*/
|
||||
#define CHECK_RESET { if (FDCS->reset){ reset_fdc(); return; } }
|
||||
static void reset_fdc(void);
|
||||
|
||||
/*
|
||||
|
@ -1958,7 +1957,10 @@ static int start_motor(void (*function)(void))
|
|||
|
||||
static void floppy_ready(void)
|
||||
{
|
||||
CHECK_RESET;
|
||||
if (FDCS->reset) {
|
||||
reset_fdc();
|
||||
return;
|
||||
}
|
||||
if (start_motor(floppy_ready))
|
||||
return;
|
||||
if (fdc_dtr())
|
||||
|
|
Loading…
Reference in New Issue