Gitweb: http://git.kernel.org/linus/6d74b86d3c0f9cfa949566a862aaad840e393249 Commit: 6d74b86d3c0f9cfa949566a862aaad840e393249 Parent: bd05dbd3b22612455283610b4e006ee3e421b13d Author: Takashi Iwai <tiwai@suse.de> AuthorDate: Fri Jun 5 09:26:41 2009 +0200 Committer: Takashi Iwai <tiwai@suse.de> CommitDate: Fri Jun 5 09:26:41 2009 +0200 ALSA: ctxfi - Allow 64bit DMA emu20kx chips support 64bit address PTE. Allow the DMA bit mask to accept 64bit address, too. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- sound/pci/ctxfi/cthw20k1.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sound/pci/ctxfi/cthw20k1.c b/sound/pci/ctxfi/cthw20k1.c index b7b8e6f..1da1f82 100644 --- a/sound/pci/ctxfi/cthw20k1.c +++ b/sound/pci/ctxfi/cthw20k1.c @@ -15,8 +15,6 @@ * */ -#include "cthw20k1.h" -#include "ct20k1reg.h" #include <linux/types.h> #include <linux/slab.h> #include <linux/pci.h> @@ -26,8 +24,14 @@ #include <linux/kernel.h> #include <linux/interrupt.h> #include <linux/delay.h> +#include "cthw20k1.h" +#include "ct20k1reg.h" -#define CT_XFI_DMA_MASK DMA_BIT_MASK(32) /* 32 bits */ +#if BITS_PER_LONG == 32 +#define CT_XFI_DMA_MASK DMA_BIT_MASK(32) /* 32 bit PTE */ +#else +#define CT_XFI_DMA_MASK DMA_BIT_MASK(64) /* 64 bit PTE */ +#endif struct hw20k1 { struct hw hw; -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
