From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/4] ide: add struct ide_port_ops
Date: Sun, 09 Mar 2008 20:43:48 +0300 [thread overview]
Message-ID: <47D421D4.4060008@ru.mvista.com> (raw)
In-Reply-To: <200802232116.31811.bzolnier@gmail.com>
Bartlomiej Zolnierkiewicz wrote:
> * Move hooks for port/host specific methods from ide_hwif_t to
> 'struct ide_port_ops'.
> * Add 'const struct ide_port_ops *port_ops' to 'struct ide_port_info'
> and ide_hwif_t.
> * Update host drivers and core code accordingly.
> While at it:
> * Rename ata66_*() cable detect functions to *_cable_detect() to match
> the standard naming. (Suggested by Sergei Shtylyov)
> Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
> Index: b/drivers/ide/pci/scc_pata.c
> ===================================================================
> --- a/drivers/ide/pci/scc_pata.c
> +++ b/drivers/ide/pci/scc_pata.c
> @@ -675,24 +675,27 @@ static void __devinit init_hwif_scc(ide_
>
> hwif->dma_setup = scc_dma_setup;
> hwif->ide_dma_end = scc_ide_dma_end;
> - hwif->set_pio_mode = scc_set_pio_mode;
> - hwif->set_dma_mode = scc_set_dma_mode;
> hwif->ide_dma_test_irq = scc_dma_test_irq;
> - hwif->udma_filter = scc_udma_filter;
>
> if (in_be32((void __iomem *)(hwif->config_data + 0xff0)) & CCKCTRL_ATACLKOEN)
> hwif->ultra_mask = ATA_UDMA6; /* 133MHz */
> else
> hwif->ultra_mask = ATA_UDMA5; /* 100MHz */
> -
> - hwif->cable_detect = scc_cable_detect;
> }
>
> +static const struct ide_port_ops scc_port_ops = {
> + .set_pio_mode = scc_set_pio_mode,
> + .set_dma_mode = scc_set_dma_mode,
> + .udma_filter = scc_udma_filter,
> + .cable_detect = scc_cable_detect,
> +};
> +
> #define DECLARE_SCC_DEV(name_str) \
> { \
> .name = name_str, \
> .init_iops = init_iops_scc, \
> .init_hwif = init_hwif_scc, \
> + .port_ops = &scc_port_ops, \
> .host_flags = IDE_HFLAG_SINGLE, \
> .pio_mask = ATA_PIO4, \
> }
Hm, this file makes use of some strange indentation...
MBR, Sergei
next prev parent reply other threads:[~2008-03-09 17:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-23 20:16 [PATCH 4/4] ide: add struct ide_port_ops Bartlomiej Zolnierkiewicz
2008-03-09 17:43 ` Sergei Shtylyov [this message]
2009-06-02 19:42 ` Sergei Shtylyov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47D421D4.4060008@ru.mvista.com \
--to=sshtylyov@ru.mvista.com \
--cc=bzolnier@gmail.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.