summaryrefslogtreecommitdiff
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorDeepak Saxena <dsaxena@plexity.net>2004-02-01 19:05:17 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2004-02-01 19:05:17 -0800
commitc884ee809940c086a8a11a63f88ce7cd891cb881 (patch)
tree630fd13048f00e2e0b087f52544e351ab0ca58c1 /include/linux/device.h
parent15928d8f371249a12557848f55f35ddf0c5a1c63 (diff)
[PATCH] PCI: Replace pci_pool with generic dma_pool, part 2
include/linux changes: - Add dma_pools member to struct device - Add include/linux/dmapool.h - Remove pools memober from struct pci_dev - Replace pci_pool_* functions with macros that map to dma_pool_* functions
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 367b21888ad4..4cf6e0d490d5 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -284,6 +284,7 @@ struct device {
detached from its driver. */
u64 *dma_mask; /* dma mask (if dma'able device) */
+ struct list_head dma_pools; /* dma pools (if dma'ble) */
void (*release)(struct device * dev);
};