diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:12 -0400 |
commit | 2f4f27d42a301ed147e50c2edbcd27bb8990bc8e (patch) | |
tree | 48d3ddb39d97bd7b9a176395c5a97b0001b2b84c | |
parent | ce0b620160e6d15a7f5b4b00cd7b8bd956d427d1 (diff) |
dma-mapping: replace all DMA_24BIT_MASK macro with DMA_BIT_MASK(24)
Replace all DMA_24BIT_MASK macro with DMA_BIT_MASK(24)
Signed-off-by: Yang Hongyang<yanghy@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/ia64/kernel/pci-dma.c | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/dma-mapping.h | 4 | ||||
-rw-r--r-- | arch/x86/kernel/pci-dma.c | 2 | ||||
-rw-r--r-- | drivers/base/isa.c | 2 | ||||
-rw-r--r-- | drivers/pnp/card.c | 2 | ||||
-rw-r--r-- | drivers/pnp/core.c | 2 | ||||
-rw-r--r-- | sound/pci/als4000.c | 4 | ||||
-rw-r--r-- | sound/pci/azt3328.c | 4 | ||||
-rw-r--r-- | sound/pci/es1938.c | 4 | ||||
-rw-r--r-- | sound/pci/sonicvibes.c | 4 |
10 files changed, 15 insertions, 15 deletions
diff --git a/arch/ia64/kernel/pci-dma.c b/arch/ia64/kernel/pci-dma.c index f82b0ee6bb1f..eb987386f691 100644 --- a/arch/ia64/kernel/pci-dma.c +++ b/arch/ia64/kernel/pci-dma.c | |||
@@ -75,7 +75,7 @@ int iommu_dma_supported(struct device *dev, u64 mask) | |||
75 | /* Copied from i386. Doesn't make much sense, because it will | 75 | /* Copied from i386. Doesn't make much sense, because it will |
76 | only work for pci_alloc_coherent. | 76 | only work for pci_alloc_coherent. |
77 | The caller just has to use GFP_DMA in this case. */ | 77 | The caller just has to use GFP_DMA in this case. */ |
78 | if (mask < DMA_24BIT_MASK) | 78 | if (mask < DMA_BIT_MASK(24)) |
79 | return 0; | 79 | return 0; |
80 | 80 | ||
81 | /* Tell the device to use SAC when IOMMU force is on. This | 81 | /* Tell the device to use SAC when IOMMU force is on. This |
diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h index 10a6be94eb77..f82fdc412c64 100644 --- a/arch/x86/include/asm/dma-mapping.h +++ b/arch/x86/include/asm/dma-mapping.h | |||
@@ -238,7 +238,7 @@ static inline unsigned long dma_alloc_coherent_mask(struct device *dev, | |||
238 | 238 | ||
239 | dma_mask = dev->coherent_dma_mask; | 239 | dma_mask = dev->coherent_dma_mask; |
240 | if (!dma_mask) | 240 | if (!dma_mask) |
241 | dma_mask = (gfp & GFP_DMA) ? DMA_24BIT_MASK : DMA_BIT_MASK(32); | 241 | dma_mask = (gfp & GFP_DMA) ? DMA_BIT_MASK(24) : DMA_BIT_MASK(32); |
242 | 242 | ||
243 | return dma_mask; | 243 | return dma_mask; |
244 | } | 244 | } |
@@ -247,7 +247,7 @@ static inline gfp_t dma_alloc_coherent_gfp_flags(struct device *dev, gfp_t gfp) | |||
247 | { | 247 | { |
248 | unsigned long dma_mask = dma_alloc_coherent_mask(dev, gfp); | 248 | unsigned long dma_mask = dma_alloc_coherent_mask(dev, gfp); |
249 | 249 | ||
250 | if (dma_mask <= DMA_24BIT_MASK) | 250 | if (dma_mask <= DMA_BIT_MASK(24)) |
251 | gfp |= GFP_DMA; | 251 | gfp |= GFP_DMA; |
252 | #ifdef CONFIG_X86_64 | 252 | #ifdef CONFIG_X86_64 |
253 | if (dma_mask <= DMA_BIT_MASK(32) && !(gfp & GFP_DMA)) | 253 | if (dma_mask <= DMA_BIT_MASK(32) && !(gfp & GFP_DMA)) |
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c index 136a01d52db0..745579bc8256 100644 --- a/arch/x86/kernel/pci-dma.c +++ b/arch/x86/kernel/pci-dma.c | |||
@@ -243,7 +243,7 @@ int dma_supported(struct device *dev, u64 mask) | |||
243 | /* Copied from i386. Doesn't make much sense, because it will | 243 | /* Copied from i386. Doesn't make much sense, because it will |
244 | only work for pci_alloc_coherent. | 244 | only work for pci_alloc_coherent. |
245 | The caller just has to use GFP_DMA in this case. */ | 245 | The caller just has to use GFP_DMA in this case. */ |
246 | if (mask < DMA_24BIT_MASK) | 246 | if (mask < DMA_BIT_MASK(24)) |
247 | return 0; | 247 | return 0; |
248 | 248 | ||
249 | /* Tell the device to use SAC when IOMMU force is on. This | 249 | /* Tell the device to use SAC when IOMMU force is on. This |
diff --git a/drivers/base/isa.c b/drivers/base/isa.c index 479694b6cbe3..91dba65d7264 100644 --- a/drivers/base/isa.c +++ b/drivers/base/isa.c | |||
@@ -141,7 +141,7 @@ int isa_register_driver(struct isa_driver *isa_driver, unsigned int ndev) | |||
141 | isa_dev->dev.release = isa_dev_release; | 141 | isa_dev->dev.release = isa_dev_release; |
142 | isa_dev->id = id; | 142 | isa_dev->id = id; |
143 | 143 | ||
144 | isa_dev->dev.coherent_dma_mask = DMA_24BIT_MASK; | 144 | isa_dev->dev.coherent_dma_mask = DMA_BIT_MASK(24); |
145 | isa_dev->dev.dma_mask = &isa_dev->dev.coherent_dma_mask; | 145 | isa_dev->dev.dma_mask = &isa_dev->dev.coherent_dma_mask; |
146 | 146 | ||
147 | error = device_register(&isa_dev->dev); | 147 | error = device_register(&isa_dev->dev); |
diff --git a/drivers/pnp/card.c b/drivers/pnp/card.c index efea128f02da..4a651f69e17c 100644 --- a/drivers/pnp/card.c +++ b/drivers/pnp/card.c | |||
@@ -167,7 +167,7 @@ struct pnp_card *pnp_alloc_card(struct pnp_protocol *protocol, int id, char *pnp | |||
167 | card->dev.parent = &card->protocol->dev; | 167 | card->dev.parent = &card->protocol->dev; |
168 | dev_set_name(&card->dev, "%02x:%02x", card->protocol->number, card->number); | 168 | dev_set_name(&card->dev, "%02x:%02x", card->protocol->number, card->number); |
169 | 169 | ||
170 | card->dev.coherent_dma_mask = DMA_24BIT_MASK; | 170 | card->dev.coherent_dma_mask = DMA_BIT_MASK(24); |
171 | card->dev.dma_mask = &card->dev.coherent_dma_mask; | 171 | card->dev.dma_mask = &card->dev.coherent_dma_mask; |
172 | 172 | ||
173 | dev_id = pnp_add_card_id(card, pnpid); | 173 | dev_id = pnp_add_card_id(card, pnpid); |
diff --git a/drivers/pnp/core.c b/drivers/pnp/core.c index 14814f231739..5dba90995d9e 100644 --- a/drivers/pnp/core.c +++ b/drivers/pnp/core.c | |||
@@ -137,7 +137,7 @@ struct pnp_dev *pnp_alloc_dev(struct pnp_protocol *protocol, int id, char *pnpid | |||
137 | INIT_LIST_HEAD(&dev->options); | 137 | INIT_LIST_HEAD(&dev->options); |
138 | dev->protocol = protocol; | 138 | dev->protocol = protocol; |
139 | dev->number = id; | 139 | dev->number = id; |
140 | dev->dma_mask = DMA_24BIT_MASK; | 140 | dev->dma_mask = DMA_BIT_MASK(24); |
141 | 141 | ||
142 | dev->dev.parent = &dev->protocol->dev; | 142 | dev->dev.parent = &dev->protocol->dev; |
143 | dev->dev.bus = &pnp_bus_type; | 143 | dev->dev.bus = &pnp_bus_type; |
diff --git a/sound/pci/als4000.c b/sound/pci/als4000.c index 542a0c65a92c..3dbacde1a5af 100644 --- a/sound/pci/als4000.c +++ b/sound/pci/als4000.c | |||
@@ -872,8 +872,8 @@ static int __devinit snd_card_als4000_probe(struct pci_dev *pci, | |||
872 | return err; | 872 | return err; |
873 | } | 873 | } |
874 | /* check, if we can restrict PCI DMA transfers to 24 bits */ | 874 | /* check, if we can restrict PCI DMA transfers to 24 bits */ |
875 | if (pci_set_dma_mask(pci, DMA_24BIT_MASK) < 0 || | 875 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(24)) < 0 || |
876 | pci_set_consistent_dma_mask(pci, DMA_24BIT_MASK) < 0) { | 876 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(24)) < 0) { |
877 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); | 877 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); |
878 | pci_disable_device(pci); | 878 | pci_disable_device(pci); |
879 | return -ENXIO; | 879 | return -ENXIO; |
diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c index e9e9b5821d41..f290bc56178f 100644 --- a/sound/pci/azt3328.c +++ b/sound/pci/azt3328.c | |||
@@ -2125,8 +2125,8 @@ snd_azf3328_create(struct snd_card *card, | |||
2125 | chip->irq = -1; | 2125 | chip->irq = -1; |
2126 | 2126 | ||
2127 | /* check if we can restrict PCI DMA transfers to 24 bits */ | 2127 | /* check if we can restrict PCI DMA transfers to 24 bits */ |
2128 | if (pci_set_dma_mask(pci, DMA_24BIT_MASK) < 0 || | 2128 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(24)) < 0 || |
2129 | pci_set_consistent_dma_mask(pci, DMA_24BIT_MASK) < 0) { | 2129 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(24)) < 0) { |
2130 | snd_printk(KERN_ERR "architecture does not support " | 2130 | snd_printk(KERN_ERR "architecture does not support " |
2131 | "24bit PCI busmaster DMA\n" | 2131 | "24bit PCI busmaster DMA\n" |
2132 | ); | 2132 | ); |
diff --git a/sound/pci/es1938.c b/sound/pci/es1938.c index dd63b132fb8e..fbd2ac09aa34 100644 --- a/sound/pci/es1938.c +++ b/sound/pci/es1938.c | |||
@@ -1608,8 +1608,8 @@ static int __devinit snd_es1938_create(struct snd_card *card, | |||
1608 | if ((err = pci_enable_device(pci)) < 0) | 1608 | if ((err = pci_enable_device(pci)) < 0) |
1609 | return err; | 1609 | return err; |
1610 | /* check, if we can restrict PCI DMA transfers to 24 bits */ | 1610 | /* check, if we can restrict PCI DMA transfers to 24 bits */ |
1611 | if (pci_set_dma_mask(pci, DMA_24BIT_MASK) < 0 || | 1611 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(24)) < 0 || |
1612 | pci_set_consistent_dma_mask(pci, DMA_24BIT_MASK) < 0) { | 1612 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(24)) < 0) { |
1613 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); | 1613 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); |
1614 | pci_disable_device(pci); | 1614 | pci_disable_device(pci); |
1615 | return -ENXIO; | 1615 | return -ENXIO; |
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index d989215f3556..7dc60ad4772e 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c | |||
@@ -1264,8 +1264,8 @@ static int __devinit snd_sonicvibes_create(struct snd_card *card, | |||
1264 | if ((err = pci_enable_device(pci)) < 0) | 1264 | if ((err = pci_enable_device(pci)) < 0) |
1265 | return err; | 1265 | return err; |
1266 | /* check, if we can restrict PCI DMA transfers to 24 bits */ | 1266 | /* check, if we can restrict PCI DMA transfers to 24 bits */ |
1267 | if (pci_set_dma_mask(pci, DMA_24BIT_MASK) < 0 || | 1267 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(24)) < 0 || |
1268 | pci_set_consistent_dma_mask(pci, DMA_24BIT_MASK) < 0) { | 1268 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(24)) < 0) { |
1269 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); | 1269 | snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA\n"); |
1270 | pci_disable_device(pci); | 1270 | pci_disable_device(pci); |
1271 | return -ENXIO; | 1271 | return -ENXIO; |