From: Roland Dreier Date: Tue, 13 May 2008 18:51:23 +0000 (-0700) Subject: IB/ipath: Change ipath_devdata.ipath_sdma_status to be unsigned long X-Git-Tag: v2.6.26-rc3~61^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f018c7e177a50390f6fcb137f1a28a6027d8ba50;p=pandora-kernel.git IB/ipath: Change ipath_devdata.ipath_sdma_status to be unsigned long Andrew Morton pointed out that bitops should take an unsigned long * arg. However, the ipath driver was doing bitops on struct ipath_devdata.ipath_sdma_status, which is u64. Change this member to unsigned long to avoid tons of warnings when x86 fixes the bitops to take unsigned long * instead of void *. Also, change the IPATH_SDMA_RUNNING and IPATH_SDMA_SHUTDOWN bit numbers to 30 and 31 (instead of 62 and 63) so that we're not setting another booby trap for someone who tries to make ipath work on a 32-bit architecture. Signed-off-by: Roland Dreier --- Reading git-diff-tree failed