diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:10 -0400 |
commit | 50cf156af7dc68a44409bef636585ef88ebbab34 (patch) | |
tree | a70e4a9ad805904f6e98bf654d6de7a55fe77e98 /drivers/scsi | |
parent | e911e0d9af90e4f1b4f2cf183a0993f9fed9f9c6 (diff) |
dma-mapping: replace all DMA_40BIT_MASK macro with DMA_BIT_MASK(40)
Replace all DMA_40BIT_MASK macro with DMA_BIT_MASK(40)
Signed-off-by: Yang Hongyang<yanghy@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/sym53c8xx_2/sym_hipd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.h b/drivers/scsi/sym53c8xx_2/sym_hipd.h index 76f6295ee881..b707abe90821 100644 --- a/drivers/scsi/sym53c8xx_2/sym_hipd.h +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.h | |||
@@ -1087,7 +1087,7 @@ do { \ | |||
1087 | (data)->size = cpu_to_scr(len); \ | 1087 | (data)->size = cpu_to_scr(len); \ |
1088 | } while (0) | 1088 | } while (0) |
1089 | #elif SYM_CONF_DMA_ADDRESSING_MODE == 1 | 1089 | #elif SYM_CONF_DMA_ADDRESSING_MODE == 1 |
1090 | #define DMA_DAC_MASK DMA_40BIT_MASK | 1090 | #define DMA_DAC_MASK DMA_BIT_MASK(40) |
1091 | #define sym_build_sge(np, data, badd, len) \ | 1091 | #define sym_build_sge(np, data, badd, len) \ |
1092 | do { \ | 1092 | do { \ |
1093 | (data)->addr = cpu_to_scr(badd); \ | 1093 | (data)->addr = cpu_to_scr(badd); \ |