From: Adrian Bunk <bunk@stusta.de>
To: gregkh@suse.de
Cc: linux-kernel@vger.kernel.org, linux-pci@atrey.karlin.mff.cuni.cz
Subject: [RFC: 2.6 patch] drivers/pci/pci.c: remove pci_dac_set_dma_mask
Date: Sun, 1 May 2005 15:53:08 +0200 [thread overview]
Message-ID: <20050501135308.GC3592@stusta.de> (raw)
pci_dac_set_dma_mask is currently completely unused.
Is any usage planned in the forseeable future or is this patch to remove
it OK?
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
arch/arm/mach-ixp4xx/common-pci.c | 10 ----------
drivers/pci/pci.c | 12 ------------
include/linux/pci.h | 2 --
3 files changed, 24 deletions(-)
--- linux-2.6.12-rc3-mm1-full/include/linux/pci.h.old 2005-04-30 22:56:24.000000000 +0200
+++ linux-2.6.12-rc3-mm1-full/include/linux/pci.h 2005-04-30 22:56:31.000000000 +0200
@@ -815,7 +815,6 @@
int pci_set_mwi(struct pci_dev *dev);
void pci_clear_mwi(struct pci_dev *dev);
int pci_set_dma_mask(struct pci_dev *dev, u64 mask);
-int pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask);
int pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask);
int pci_assign_resource(struct pci_dev *dev, int i);
@@ -946,7 +945,6 @@
static inline int pci_enable_device(struct pci_dev *dev) { return -EIO; }
static inline void pci_disable_device(struct pci_dev *dev) { }
static inline int pci_set_dma_mask(struct pci_dev *dev, u64 mask) { return -EIO; }
-static inline int pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask) { return -EIO; }
static inline int pci_assign_resource(struct pci_dev *dev, int i) { return -EBUSY;}
static inline int pci_register_driver(struct pci_driver *drv) { return 0;}
static inline void pci_unregister_driver(struct pci_driver *drv) { }
--- linux-2.6.12-rc3-mm1-full/drivers/pci/pci.c.old 2005-04-30 22:56:39.000000000 +0200
+++ linux-2.6.12-rc3-mm1-full/drivers/pci/pci.c 2005-04-30 22:57:07.000000000 +0200
@@ -806,17 +806,6 @@
}
int
-pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask)
-{
- if (!pci_dac_dma_supported(dev, mask))
- return -EIO;
-
- dev->dma_mask = mask;
-
- return 0;
-}
-
-int
pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
{
if (!pci_dma_supported(dev, mask))
@@ -878,7 +867,6 @@
EXPORT_SYMBOL(pci_set_mwi);
EXPORT_SYMBOL(pci_clear_mwi);
EXPORT_SYMBOL(pci_set_dma_mask);
-EXPORT_SYMBOL(pci_dac_set_dma_mask);
EXPORT_SYMBOL(pci_set_consistent_dma_mask);
EXPORT_SYMBOL(pci_assign_resource);
EXPORT_SYMBOL(pci_find_parent_resource);
--- linux-2.6.12-rc3-mm1-full/arch/arm/mach-ixp4xx/common-pci.c.old 2005-04-30 22:57:22.000000000 +0200
+++ linux-2.6.12-rc3-mm1-full/arch/arm/mach-ixp4xx/common-pci.c 2005-04-30 22:57:29.000000000 +0200
@@ -502,15 +502,6 @@
}
int
-pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask)
-{
- if (mask >= SZ_64M - 1 )
- return 0;
-
- return -EIO;
-}
-
-int
pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
{
if (mask >= SZ_64M - 1 )
@@ -520,7 +511,6 @@
}
EXPORT_SYMBOL(pci_set_dma_mask);
-EXPORT_SYMBOL(pci_dac_set_dma_mask);
EXPORT_SYMBOL(pci_set_consistent_dma_mask);
EXPORT_SYMBOL(ixp4xx_pci_read);
EXPORT_SYMBOL(ixp4xx_pci_write);
next reply other threads:[~2005-05-01 13:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-01 13:53 Adrian Bunk [this message]
2005-05-01 15:37 ` [RFC: 2.6 patch] drivers/pci/pci.c: remove pci_dac_set_dma_mask Grant Grundler
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=20050501135308.GC3592@stusta.de \
--to=bunk@stusta.de \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@atrey.karlin.mff.cuni.cz \
/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.