diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:32 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:32 -0400 |
commit | aa5d2de7b080873f6d9ac3aede423c9713bf0caa (patch) | |
tree | babf0dbf6a7d7e545053736e5ae6976faddabfd7 /drivers/ide/ide-floppy.c | |
parent | 85e39035ca381846b031690f4d1ac1f0660da0a2 (diff) |
ide: make ide_pc_intr() static
* Always use ide_pc_intr as a handler in ide_pc_intr().
* Remove no longer used ide*_pc_intr() and 'handler'
argument from ide_{transfer_pc,pc_intr}().
* Make ide_pc_intr() static.
There should be no functional changes caused by this patch.
Cc: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-floppy.c')
-rw-r--r-- | drivers/ide/ide-floppy.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c index 378a22ca55c1..7be3cd5daa9d 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -193,12 +193,6 @@ static void ide_floppy_callback(ide_drive_t *drive, int dsc) | |||
193 | idefloppy_end_request(drive, uptodate, 0); | 193 | idefloppy_end_request(drive, uptodate, 0); |
194 | } | 194 | } |
195 | 195 | ||
196 | /* The usual interrupt handler called during a packet command. */ | ||
197 | static ide_startstop_t idefloppy_pc_intr(ide_drive_t *drive) | ||
198 | { | ||
199 | return ide_pc_intr(drive, idefloppy_pc_intr); | ||
200 | } | ||
201 | |||
202 | /* | 196 | /* |
203 | * What we have here is a classic case of a top half / bottom half interrupt | 197 | * What we have here is a classic case of a top half / bottom half interrupt |
204 | * service routine. In interrupt mode, the device sends an interrupt to signal | 198 | * service routine. In interrupt mode, the device sends an interrupt to signal |
@@ -230,7 +224,7 @@ static ide_startstop_t idefloppy_start_pc_transfer(ide_drive_t *drive) | |||
230 | * where the Busy flag was apparently being deasserted before the | 224 | * where the Busy flag was apparently being deasserted before the |
231 | * unit was ready to receive data. This was happening on a | 225 | * unit was ready to receive data. This was happening on a |
232 | * 1200 MHz Athlon system. 10/26/01 25msec is too short, | 226 | * 1200 MHz Athlon system. 10/26/01 25msec is too short, |
233 | * 40 and 50msec work well. idefloppy_pc_intr will not be actually | 227 | * 40 and 50msec work well. ide_pc_intr will not be actually |
234 | * used until after the packet is moved in about 50 msec. | 228 | * used until after the packet is moved in about 50 msec. |
235 | */ | 229 | */ |
236 | if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) { | 230 | if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) { |
@@ -241,7 +235,7 @@ static ide_startstop_t idefloppy_start_pc_transfer(ide_drive_t *drive) | |||
241 | expiry = NULL; | 235 | expiry = NULL; |
242 | } | 236 | } |
243 | 237 | ||
244 | return ide_transfer_pc(drive, idefloppy_pc_intr, timeout, expiry); | 238 | return ide_transfer_pc(drive, timeout, expiry); |
245 | } | 239 | } |
246 | 240 | ||
247 | static void ide_floppy_report_error(idefloppy_floppy_t *floppy, | 241 | static void ide_floppy_report_error(idefloppy_floppy_t *floppy, |