diff options
author | Francois Romieu <romieu@fr.zoreil.com> | 2006-05-10 21:48:57 +0200 |
---|---|---|
committer | Stephen Hemminger <shemminger@osdl.org> | 2006-05-10 23:04:22 +0200 |
commit | 4c1b46226ce4424a93b8ac544e37afb26c8a72c6 (patch) | |
tree | 9eae6412bdeebad107f190bc39f49df9957712f4 /include | |
parent | phy: mdiobus_register(): initialize all phy_map entries (diff) | |
download | linux-4c1b46226ce4424a93b8ac544e37afb26c8a72c6.tar.xz linux-4c1b46226ce4424a93b8ac544e37afb26c8a72c6.zip |
dl2k: use DMA_48BIT_MASK constant
Typo will be harder with this one.
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/dma-mapping.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index ff61817082fa..635690cf3e3d 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h @@ -14,6 +14,7 @@ enum dma_data_direction { }; #define DMA_64BIT_MASK 0xffffffffffffffffULL +#define DMA_48BIT_MASK 0x0000ffffffffffffULL #define DMA_40BIT_MASK 0x000000ffffffffffULL #define DMA_39BIT_MASK 0x0000007fffffffffULL #define DMA_32BIT_MASK 0x00000000ffffffffULL |