Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751885AbbFHCmf (ORCPT ); Sun, 7 Jun 2015 22:42:35 -0400 Received: from shards.monkeyblade.net ([149.20.54.216]:49457 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751332AbbFHCm2 (ORCPT ); Sun, 7 Jun 2015 22:42:28 -0400 Date: Sun, 07 Jun 2015 19:42:27 -0700 (PDT) Message-Id: <20150607.194227.1322778749534777731.davem@davemloft.net> To: vthakkar1994@gmail.com Cc: isdn@linux-pingi.de, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, julia.lawall@lip6.fr Subject: Re: [PATCH] isdn/hisax: Convert use of __constant_cpu_to_le16 to cpu_to_le16 From: David Miller In-Reply-To: <20150606011400.GA10287@vaishali-Ideapad-Z570> References: <20150606011400.GA10287@vaishali-Ideapad-Z570> X-Mailer: Mew version 6.6 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Sun, 07 Jun 2015 19:42:28 -0700 (PDT) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 913 Lines: 25 From: Vaishali Thakkar Date: Sat, 6 Jun 2015 06:44:00 +0530 > 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 Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/