From: H. Peter Anvin Date: Tue, 3 Aug 2010 14:00:16 +0000 (-0700) Subject: um, x86: Cast to (u64 *) inside set_64bit() X-Git-Tag: v2.6.36-rc1~526^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf676945cb5bfe455321f57968967c18976f4995;p=pandora-kernel.git um, x86: Cast to (u64 *) inside set_64bit() After tightening up the types passed to set_64bit(), the cast to (phys_t *) triggers a warning apparently because phys_t is defined as "unsigned long" when building on 64 bits; however, u64 is defined as "unsigned long long". This is, however, a explicit cast inside a size-specific call, so just make the cast explicitly (u64 *). Signed-off-by: H. Peter Anvin Cc: Jeff Dike LKML-Reference: --- Reading git-diff-tree failed