From: Vaishali Thakkar Date: Tue, 16 Jun 2015 11:43:05 +0000 (+0530) Subject: IB/ipath: Convert use of __constant_ to X-Git-Tag: omap-for-v4.3/fixes-merge-window~240^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb1ff431c3dd904cda37d6d07d4a3ea29840d621;p=pandora-kernel.git IB/ipath: Convert use of __constant_ to In little endian cases, the macros be16_to_cpu and cpu_to_be64 unfolds to __swab{16,64} which provides special case for constants. In big endian cases, __constant_be16_to_cpu and be16_to_cpu expand directly to the same expression. The same applies for __constant_cpu_to_be64 and cpu_to_be64. So, replace __constant_be16_to_cpu with be16_to_cpu and __constant_cpu_to_be64 with cpu_to_be64, with the goal of getting rid of the definition of __constant_be16_to_cpu and __constant_cpu_to_be64 completely. Signed-off-by: Vaishali Thakkar Signed-off-by: Doug Ledford --- Reading git-diff-tree failed