From: David Daney <ddaney@avtrex.com>
To: linux-mips@linux-mips.org
Subject: Re: [PATCH] Fix build in ide-dma.c
Date: Mon, 14 Nov 2005 15:05:06 -0800 [thread overview]
Message-ID: <43791822.3050600@avtrex.com> (raw)
In-Reply-To: <17273.5861.51238.726136@dl2.hq2.avtrex.com>
David Daney wrote:
> When in_drive_list was renamed to ide_in_drive_list, several
> occurrences were missed. This patch allows me to build.
>
> David Daney
>
I guess I should probably add:
Signed-off-by: David Daney <ddaney@avtrex.com>
>
> diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c
> --- a/drivers/ide/ide-dma.c
> +++ b/drivers/ide/ide-dma.c
> @@ -665,7 +665,7 @@ int __ide_dma_bad_drive (ide_drive_t *dr
> {
> struct hd_driveid *id = drive->id;
>
> - int blacklist = in_drive_list(id, drive_blacklist);
> + int blacklist = ide_in_drive_list(id, drive_blacklist);
> if (blacklist) {
> printk(KERN_WARNING "%s: Disabling (U)DMA for %s (blacklisted)\n",
> drive->name, id->model);
> @@ -679,7 +679,7 @@ EXPORT_SYMBOL(__ide_dma_bad_drive);
> int __ide_dma_good_drive (ide_drive_t *drive)
> {
> struct hd_driveid *id = drive->id;
> - return in_drive_list(id, drive_whitelist);
> + return ide_in_drive_list(id, drive_whitelist);
> }
>
> EXPORT_SYMBOL(__ide_dma_good_drive);
>
next prev parent reply other threads:[~2005-11-14 23:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-14 22:59 [PATCH] Fix build in ide-dma.c David Daney
2005-11-14 23:05 ` David Daney [this message]
2005-11-15 15:53 ` Ralf Baechle
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=43791822.3050600@avtrex.com \
--to=ddaney@avtrex.com \
--cc=linux-mips@linux-mips.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.