diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-28 17:44:37 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-28 17:44:37 -0400 |
commit | 16bb69c14a42e64faef1ec5c724ffaca916347a1 (patch) | |
tree | fd9abaf615c57183ad1ce09afd976c4fd1fefbe5 /drivers/ide/h8300/ide-h8300.c | |
parent | c5dd43ec65c1e1e378df043d517d40ed70a32cbe (diff) |
ide: remove ->INS{W,L} and ->OUTS{W,L} methods
* Use ins{w,l}()/outs{w,l}() and __ide_mm_ins{w,l}()/__ide_mm_outs{w,l}()
directly in ata_{in,out}put_data() (by using IDE_HFLAG_MMIO host flag to
decide which I/O ops are required).
* Remove no longer needed ->INS{W,L} and ->OUTS{W,L} methods (ide-h8300,
au1xxx-ide and scc_pata implement their own ->{in,out}put_data methods).
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/h8300/ide-h8300.c')
-rw-r--r-- | drivers/ide/h8300/ide-h8300.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ide/h8300/ide-h8300.c b/drivers/ide/h8300/ide-h8300.c index 90702f79d560..b5d6508d39bb 100644 --- a/drivers/ide/h8300/ide-h8300.c +++ b/drivers/ide/h8300/ide-h8300.c | |||
@@ -90,11 +90,7 @@ static inline void hwif_setup(ide_hwif_t *hwif) | |||
90 | hwif->output_data = h8300_output_data; | 90 | hwif->output_data = h8300_output_data; |
91 | 91 | ||
92 | hwif->OUTW = mm_outw; | 92 | hwif->OUTW = mm_outw; |
93 | hwif->OUTSW = mm_outsw; | ||
94 | hwif->INW = mm_inw; | 93 | hwif->INW = mm_inw; |
95 | hwif->INSW = mm_insw; | ||
96 | hwif->OUTSL = NULL; | ||
97 | hwif->INSL = NULL; | ||
98 | } | 94 | } |
99 | 95 | ||
100 | static int __init h8300_ide_init(void) | 96 | static int __init h8300_ide_init(void) |