summaryrefslogtreecommitdiffstats
path: root/drivers/message
diff options
context:
space:
mode:
authorKyle McMartin2007-10-17 18:25:00 +0200
committerJames Bottomley2008-02-18 15:57:16 +0100
commit2939deaab257924c9afd87575dbd9100ae08160d (patch)
tree2be81886c675a4224013b45c0c7904c081984b00 /drivers/message
parent[SCSI] aic94xx: fix REQ_TASK_ABORT and REQ_DEVICE_RESET (diff)
downloadkernel-qcow2-linux-2939deaab257924c9afd87575dbd9100ae08160d.tar.gz
kernel-qcow2-linux-2939deaab257924c9afd87575dbd9100ae08160d.tar.xz
kernel-qcow2-linux-2939deaab257924c9afd87575dbd9100ae08160d.zip
[SCSI] mpt fusion: kill warnings in mptbase.h on parisc64
Verified all the arches necessary select the CONFIG_64BIT symbol. This also kills the warning (since it was using the 32-bit case) on parisc64 and mips64. Signed-off-by: Kyle McMartin <kyle@mcmartin.ca> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/fusion/mptbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptbase.h b/drivers/message/fusion/mptbase.h
index d83ea96fe135..caadc68c3000 100644
--- a/drivers/message/fusion/mptbase.h
+++ b/drivers/message/fusion/mptbase.h
@@ -923,7 +923,7 @@ extern struct proc_dir_entry *mpt_proc_root_dir;
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
#endif /* } __KERNEL__ */
-#if defined(__alpha__) || defined(__sparc_v9__) || defined(__ia64__) || defined(__x86_64__) || defined(__powerpc__)
+#ifdef CONFIG_64BIT
#define CAST_U32_TO_PTR(x) ((void *)(u64)x)
#define CAST_PTR_TO_U32(x) ((u32)(u64)x)
#else