Hello.
Bartlomiej Zolnierkiewicz wrote:
quoted text > * Change ide_get_paired_drive() to return NULL if peer device
> is not present and update all users accordingly.
>
> While at it:
>
> * ide_get_paired_drive() -> ide_get_pair_dev()
>
Hm, ide_get_mate_dev() appeals to me more.
quoted text > * Use ide_get_pair_dev() in cs5530.c, sc1200.c and via82cxxx.c.
>
> There should be no functional changes caused by this patch.
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
quoted text > Index: b/drivers/ide/pci/cs5530.c
> ===================================================================
> --- a/drivers/ide/pci/cs5530.c
> +++ b/drivers/ide/pci/cs5530.c
> @@ -81,11 +81,11 @@ static void cs5530_set_pio_mode(ide_driv
> static u8 cs5530_udma_filter(ide_drive_t *drive)
> {
> ide_hwif_t *hwif = drive->hwif;
> - ide_drive_t *mate = &hwif->drives[(drive->dn & 1) ^ 1];
> + ide_drive_t *mate = ide_get_pair_dev(drive);
> u16 *mateid = mate->id;
> u8 mask = hwif->ultra_mask;
>
> - if (mate->present == 0)
> + if (mate == NULL)
>
Hum... no == in some places and == isn't very consistent...
MBR, Sergei
--
unsubscribe notice To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Messages in current thread:
Re: [PATCH 08/10] ide: check drive->present in ide_get_pai ... , Sergei Shtylyov , (Sun Sep 21, 2:56 am)