Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-04-20 Thread Sergei Shtylyov
Hello, once I wrote: [PATCH] ide: make ide_hwif_t.ide_dma_host_on void * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == 1 or when return value is discarded make it void, also drop "ide_" prefix * make __ide_dma_host_on() void and drop "__" prefix BTW, it wo

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-03-26 Thread Sergei Shtylyov
Hello. Bartlomiej Zolnierkiewicz wrote: [PATCH] ide: make ide_hwif_t.ide_dma_host_on void * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == 1 or when return value is discarded make it void, also drop "ide_" prefix * make __ide_dma_host_on() void and drop "__" pref

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-02-19 Thread Bartlomiej Zolnierkiewicz
On Monday 19 February 2007 23:20, Olaf Hering wrote: > On Sat, Feb 03, Bartlomiej Zolnierkiewicz wrote: > > > [PATCH] ide: make ide_hwif_t.ide_dma_host_on void > > > +++ b/drivers/ide/ppc/pmac.c > > @@ -1984,10 +1984,8 @@ static void pmac_ide_dma_host_off(ide_dr > > { > > } > > > > -static i

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-02-19 Thread Olaf Hering
On Sat, Feb 03, Bartlomiej Zolnierkiewicz wrote: > [PATCH] ide: make ide_hwif_t.ide_dma_host_on void > +++ b/drivers/ide/ppc/pmac.c > @@ -1984,10 +1984,8 @@ static void pmac_ide_dma_host_off(ide_dr > { > } > > -static int > -pmac_ide_dma_host_on (ide_drive_t *drive) > +static int pmac_ide_dma

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-02-03 Thread Bartlomiej Zolnierkiewicz
[PATCH] ide: make ide_hwif_t.ide_dma_host_on void * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == 1 or when return value is discarded make it void, also drop "ide_" prefix * make __ide_dma_host_on() void and drop "__" prefix v2: * while at it rename atiixp_ide_dma_h

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-02-02 Thread Bartlomiej Zolnierkiewicz
Sergei Shtylyov wrote: > > Hello again. :-) > > Bartlomiej Zolnierkiewicz wrote: > >> [PATCH] ide: make ide_hwif_t.ide_dma_host_on void > >> * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == >> 1 >> or when return value is discarded make it void, also drop "ide_"

Re: [PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-01-20 Thread Sergei Shtylyov
Hello again. :-) Bartlomiej Zolnierkiewicz wrote: [PATCH] ide: make ide_hwif_t.ide_dma_host_on void * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == 1 or when return value is discarded make it void, also drop "ide_" prefix * make __ide_dma_host_on() void and dro

[PATCH 12/15] ide: make ide_hwif_t.ide_dma_host_on void

2007-01-18 Thread Bartlomiej Zolnierkiewicz
[PATCH] ide: make ide_hwif_t.ide_dma_host_on void * since ide_hwif_t.ide_dma_host_on is called either when drive->using_dma == 1 or when return value is discarded make it void, also drop "ide_" prefix * make __ide_dma_host_on() void and drop "__" prefix Signed-off-by: Bartlomiej Zolnierkiewicz