From: Vaishali Thakkar Date: Sat, 6 Jun 2015 01:14:00 +0000 (+0530) Subject: isdn/hisax: Convert use of __constant_cpu_to_le16 to cpu_to_le16 X-Git-Tag: omap-for-v4.2/fixes-rc1^2~134^2~117 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e2987a188c56d269882d89d37b6128f71d3b2a0;p=pandora-kernel.git isdn/hisax: Convert use of __constant_cpu_to_le16 to cpu_to_le16 In big endian cases, macro cpu_to_le16 unfolds to __swab16 which provides special case for constants. In little endian cases, __constant_cpu_to_le16 and cpu_to_le16 expand directly to the same expression. So, replace __constant_cpu_to_le16 with cpu_to_le16 with the goal of getting rid of the definition of __constant_cpu_to_le16 completely. The semantic patch that performs this transformation is as follows: @@expression x;@@ - __constant_cpu_to_le16(x) + cpu_to_le16(x) Signed-off-by: Vaishali Thakkar Signed-off-by: David S. Miller --- Reading git-diff-tree failed