Module Name:    src
Committed By:   jmcneill
Date:           Tue Oct 14 21:01:14 UTC 2014

Modified Files:
        src/sys/arch/arm/allwinner: awin_reg.h

Log Message:
AWIN_A31_DMA_IRQ_*_MASK should be ULL not UL, spotted by chuq


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/arm/allwinner/awin_reg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/allwinner/awin_reg.h
diff -u src/sys/arch/arm/allwinner/awin_reg.h:1.35 src/sys/arch/arm/allwinner/awin_reg.h:1.36
--- src/sys/arch/arm/allwinner/awin_reg.h:1.35	Mon Oct 13 13:34:54 2014
+++ src/sys/arch/arm/allwinner/awin_reg.h	Tue Oct 14 21:01:13 2014
@@ -1870,9 +1870,9 @@ struct awin_mmc_idma_descriptor {
 #define AWIN_A31_DMA_IRQ_EN_REG1_PKG_IRQ_EN(n)	__BIT((n - 8) * 4 + 1)
 #define AWIN_A31_DMA_IRQ_EN_REG1_HLAF_IRQ_EN(n)	__BIT((n - 8) * 4 + 0)
 
-#define AWIN_A31_DMA_IRQ_QUEUE_MASK		0x4444444444444444UL
-#define AWIN_A31_DMA_IRQ_PKG_MASK		0x2222222222222222UL
-#define AWIN_A31_DMA_IRQ_HF_MASK		0x1111111111111111UL
+#define AWIN_A31_DMA_IRQ_QUEUE_MASK		0x4444444444444444ULL
+#define AWIN_A31_DMA_IRQ_PKG_MASK		0x2222222222222222ULL
+#define AWIN_A31_DMA_IRQ_HF_MASK		0x1111111111111111ULL
 
 #define AWIN_A31_DMA_EN_EN			__BIT(0)
 

Reply via email to