diff options
author | santosh nayak <santoshprasadnayak@gmail.com> | 2012-02-21 05:08:13 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2012-02-22 16:36:01 -0500 |
commit | e894d1d7fd8cfa89a085df2d368a5e652751b0a1 (patch) | |
tree | 37bb8a0145719e00a1b7e6391422735577de872e /drivers/firewire | |
parent | ea102d0ec475e4cd6e74a8b61b45708fbf6b582e (diff) |
firewire: nosy: Use the macro DMA_BIT_MASK().
Use the macro DMA_BIT_MASK instead of the constant 0xffffffff
Signed-off-by: Santosh Nayak <santoshprasadnayak@gmail.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/nosy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/nosy.c b/drivers/firewire/nosy.c index 763626b739d1..a7c4422a688e 100644 --- a/drivers/firewire/nosy.c +++ b/drivers/firewire/nosy.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <linux/timex.h> | 36 | #include <linux/timex.h> |
37 | #include <linux/uaccess.h> | 37 | #include <linux/uaccess.h> |
38 | #include <linux/wait.h> | 38 | #include <linux/wait.h> |
39 | 39 | #include <linux/dma-mapping.h> | |
40 | #include <linux/atomic.h> | 40 | #include <linux/atomic.h> |
41 | #include <asm/byteorder.h> | 41 | #include <asm/byteorder.h> |
42 | 42 | ||
@@ -536,7 +536,7 @@ add_card(struct pci_dev *dev, const struct pci_device_id *unused) | |||
536 | u32 p, end; | 536 | u32 p, end; |
537 | int ret, i; | 537 | int ret, i; |
538 | 538 | ||
539 | if (pci_set_dma_mask(dev, 0xffffffff)) { | 539 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(32))) { |
540 | dev_err(&dev->dev, | 540 | dev_err(&dev->dev, |
541 | "DMA address limits not supported for PCILynx hardware\n"); | 541 | "DMA address limits not supported for PCILynx hardware\n"); |
542 | return -ENXIO; | 542 | return -ENXIO; |