diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:37 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:37 -0400 |
commit | 7bf7420a318978cd6042e5a5da34b7cfa18ae559 (patch) | |
tree | 7498ae013e3603dc66628873eaa2647fd001fe98 /include/linux/ide.h | |
parent | 385a4b8787c70b708688bee65139f15b0f79f144 (diff) |
ide: add ide_init_pc() helper
* Add IDE_PC_BUFFER_SIZE define.
* Add ide_init_pc() and convert ide-{floppy,tape}.c to use it
instead of ide*_init_pc().
* Remove no longer used IDE*_PC_BUFFER_SIZE and ide*_init_pc().
There should be no functional changes caused by this patch.
Acked-by: Borislav Petkov <petkovbb@gmail.com>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 03dc2157a2b5..bba2f73b99a0 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -724,6 +724,12 @@ enum { | |||
724 | PC_FLAG_TIMEDOUT = (1 << 7), | 724 | PC_FLAG_TIMEDOUT = (1 << 7), |
725 | }; | 725 | }; |
726 | 726 | ||
727 | /* | ||
728 | * With each packet command, we allocate a buffer of IDE_PC_BUFFER_SIZE bytes. | ||
729 | * This is used for several packet commands (not for READ/WRITE commands). | ||
730 | */ | ||
731 | #define IDE_PC_BUFFER_SIZE 256 | ||
732 | |||
727 | struct ide_atapi_pc { | 733 | struct ide_atapi_pc { |
728 | /* actual packet bytes */ | 734 | /* actual packet bytes */ |
729 | u8 c[12]; | 735 | u8 c[12]; |
@@ -753,7 +759,7 @@ struct ide_atapi_pc { | |||
753 | * those are more or less driver-specific and some of them are subject | 759 | * those are more or less driver-specific and some of them are subject |
754 | * to change/removal later. | 760 | * to change/removal later. |
755 | */ | 761 | */ |
756 | u8 pc_buf[256]; | 762 | u8 pc_buf[IDE_PC_BUFFER_SIZE]; |
757 | 763 | ||
758 | /* idetape only */ | 764 | /* idetape only */ |
759 | struct idetape_bh *bh; | 765 | struct idetape_bh *bh; |
@@ -1113,6 +1119,8 @@ void ide_pktcmd_tf_load(ide_drive_t *, u32, u16, u8); | |||
1113 | 1119 | ||
1114 | int ide_check_atapi_device(ide_drive_t *, const char *); | 1120 | int ide_check_atapi_device(ide_drive_t *, const char *); |
1115 | 1121 | ||
1122 | void ide_init_pc(struct ide_atapi_pc *); | ||
1123 | |||
1116 | ide_startstop_t ide_pc_intr(ide_drive_t *drive, struct ide_atapi_pc *pc, | 1124 | ide_startstop_t ide_pc_intr(ide_drive_t *drive, struct ide_atapi_pc *pc, |
1117 | ide_handler_t *handler, unsigned int timeout, ide_expiry_t *expiry, | 1125 | ide_handler_t *handler, unsigned int timeout, ide_expiry_t *expiry, |
1118 | void (*update_buffers)(ide_drive_t *, struct ide_atapi_pc *), | 1126 | void (*update_buffers)(ide_drive_t *, struct ide_atapi_pc *), |