From: Jens Axboe <axboe@suse.de>
To: "Ivan G." <ivangurdiev@yahoo.com>
Cc: Linus Torvalds <torvalds@transmeta.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: 2.5.8 compile bugs
Date: Mon, 15 Apr 2002 09:07:28 +0200 [thread overview]
Message-ID: <20020415070728.GB12608@suse.de> (raw)
In-Reply-To: <02041416483500.07641@cobra.linux>
On Sun, Apr 14 2002, Ivan G. wrote:
> 2)
> ERROR:
> ide.c: In function `ide_teardown_commandlist':
> ide.c:2704: structure has no member named `pci_dev'
> ide.c: In function `ide_build_commandlist':
> ide.c:2719: structure has no member named `pci_dev'
> make[3]: *** [ide.o] Error 1
> make[3]: Leaving directory `/usr/src/linux-2.5.8/drivers/ide'
> make[2]: *** [first_rule] Error 2
> make[2]: Leaving directory `/usr/src/linux-2.5.8/drivers/ide'
> make[1]: *** [_subdir_ide] Error 2
> make[1]: Leaving directory `/usr/src/linux-2.5.8/drivers'
> make: *** [_dir_drivers] Error 2
This should fix it.
--- drivers/ide/ide.c~ 2002-04-15 09:05:58.000000000 +0200
+++ drivers/ide/ide.c 2002-04-15 09:06:52.000000000 +0200
@@ -2701,7 +2701,11 @@
void ide_teardown_commandlist(ide_drive_t *drive)
{
+#ifdef CONFIG_BLK_DEV_IDEPCI
struct pci_dev *pdev= drive->channel->pci_dev;
+#else
+ struct pci_dev *pdev = NULL;
+#endif
struct list_head *entry;
list_for_each(entry, &drive->free_req) {
@@ -2716,7 +2720,11 @@
int ide_build_commandlist(ide_drive_t *drive)
{
+#ifdef CONFIG_BLK_DEV_IDEPCI
struct pci_dev *pdev= drive->channel->pci_dev;
+#else
+ struct pci_dev *pdev = NULL;
+#endif
struct ata_request *ar;
ide_tag_info_t *tcq;
int i, err;
--
Jens Axboe
next prev parent reply other threads:[~2002-04-15 7:07 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-04-14 22:48 2.5.8 compile bugs Ivan G.
2002-04-15 7:07 ` Jens Axboe [this message]
2002-04-15 11:47 ` Roman Zippel
2002-04-15 11:51 ` Jens Axboe
2002-04-15 12:04 ` Roman Zippel
2002-04-15 12:09 ` Jens Axboe
2002-04-15 12:31 ` Roman Zippel
2002-04-15 16:01 ` andrew may
2002-04-15 17:30 ` Roman Zippel
2002-04-15 17:32 ` Jens Axboe
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=20020415070728.GB12608@suse.de \
--to=axboe@suse.de \
--cc=ivangurdiev@yahoo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/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.