diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-04-08 04:35:30 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-08 04:35:30 -0400 |
commit | 5ea472a77f8e4811ceee3f44a9deda6ad6e8b789 (patch) | |
tree | a9ec5019e2b666a19874fc344ffb0dd5da6bce94 /drivers/net/sungem.c | |
parent | 6c009ecef8cca28c7c09eb16d0802e37915a76e1 (diff) | |
parent | 577c9c456f0e1371cbade38eaf91ae8e8a308555 (diff) |
Merge commit 'v2.6.30-rc1' into perfcounters/core
Conflicts:
arch/powerpc/include/asm/systbl.h
arch/powerpc/include/asm/unistd.h
include/linux/init_task.h
Merge reason: the conflicts are non-trivial: PowerPC placement
of sys_perf_counter_open has to be mixed with the
new preadv/pwrite syscalls.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/net/sungem.c')
-rw-r--r-- | drivers/net/sungem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sungem.c b/drivers/net/sungem.c index c024352c92fd..d2dfe0ab5106 100644 --- a/drivers/net/sungem.c +++ b/drivers/net/sungem.c | |||
@@ -3042,10 +3042,10 @@ static int __devinit gem_init_one(struct pci_dev *pdev, | |||
3042 | */ | 3042 | */ |
3043 | if (pdev->vendor == PCI_VENDOR_ID_SUN && | 3043 | if (pdev->vendor == PCI_VENDOR_ID_SUN && |
3044 | pdev->device == PCI_DEVICE_ID_SUN_GEM && | 3044 | pdev->device == PCI_DEVICE_ID_SUN_GEM && |
3045 | !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 3045 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3046 | pci_using_dac = 1; | 3046 | pci_using_dac = 1; |
3047 | } else { | 3047 | } else { |
3048 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 3048 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
3049 | if (err) { | 3049 | if (err) { |
3050 | printk(KERN_ERR PFX "No usable DMA configuration, " | 3050 | printk(KERN_ERR PFX "No usable DMA configuration, " |
3051 | "aborting.\n"); | 3051 | "aborting.\n"); |