diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-11 23:12:35 +0200 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-12 20:55:47 +0200 |
commit | 2855568b1ee4f58ef2c0a13ddfceb4b0b216b7ed (patch) | |
tree | 79262af301c2386c2c391942991742653bc7935e /drivers/ata/libata-eh.c | |
parent | libata: use ata_exec_internal() for PMP register access (diff) | |
download | linux-2855568b1ee4f58ef2c0a13ddfceb4b0b216b7ed.tar.xz linux-2855568b1ee4f58ef2c0a13ddfceb4b0b216b7ed.zip |
[libata] struct pci_dev related cleanups
* remove pointless pci_dev_to_dev() wrapper. Just directly reference
the embedded struct device like everyone else does.
* pata_cs5520: delete cs5520_remove_one(), it was a duplicate of
ata_pci_remove_one()
* linux/libata.h: don't bother including linux/pci.h, we don't need it.
Simply declare 'struct pci_dev' and assume interested parties will
include the header, as they should be doing anyway.
* linux/libata.h: consolidate all CONFIG_PCI declarations into a
single location in the header.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/libata-eh.c')
-rw-r--r-- | drivers/ata/libata-eh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 5a2b2af4d0c1..2eaa39fc65d0 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -33,6 +33,7 @@ */ #include <linux/kernel.h> +#include <linux/pci.h> #include <scsi/scsi.h> #include <scsi/scsi_host.h> #include <scsi/scsi_eh.h> |