Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752404AbbFHGBG (ORCPT ); Mon, 8 Jun 2015 02:01:06 -0400 Received: from mailout1.w1.samsung.com ([210.118.77.11]:31088 "EHLO mailout1.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750917AbbFHGA5 (ORCPT ); Mon, 8 Jun 2015 02:00:57 -0400 X-AuditID: cbfec7f4-f79c56d0000012ee-5e-55752f97b316 Message-id: <55752F7A.1000709@samsung.com> Date: Mon, 08 Jun 2015 08:00:26 +0200 From: Andrzej Hajda User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-version: 1.0 To: Vaishali Thakkar , Mauro Carvalho Chehab Cc: Kyungmin Park , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Julia Lawall Subject: Re: [PATCH] [media] s5k5baf: Convert use of __constant_cpu_to_be16 to cpu_to_be16 References: <20150606015327.GA15272@vaishali-Ideapad-Z570> In-reply-to: <20150606015327.GA15272@vaishali-Ideapad-Z570> Content-type: text/plain; charset=windows-1252 Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFrrELMWRmVeSWpSXmKPExsVy+t/xq7rT9UtDDS72i1kse3Ca0eJs0xt2 i8u75rBZ9GzYymqx+lmFxfOV11gd2Dx2zrrL7rF3S5bHln4go2/LKkaPz5vkAlijuGxSUnMy y1KL9O0SuDKa5rxjLNjEVTFvyhH2BsazHF2MnBwSAiYSV05dYYGwxSQu3FvP1sXIxSEksJRR YtrdKUwQznNGiVt3WthAqngFtCSezpvC2MXIwcEioCqx70EASJhNQFPi7+abYCWiAhESby+f ZIIoF5T4Mfke2AIRgQSJG9vvMYLMZBboZ5SYP+8yWIOwQIxE9/T7zCC2kICVxIm185hA5nMK WEs0/hMAMZkF9CTuX9QCqWAWkJfYvOYt8wRGgVlINsxCqJqFpGoBI/MqRtHU0uSC4qT0XEO9 4sTc4tK8dL3k/NxNjJCQ/rKDcfExq0OMAhyMSjy8BxaVhAqxJpYVV+YeYpTgYFYS4Q0UKQ0V 4k1JrKxKLcqPLyrNSS0+xCjNwaIkzjt31/sQIYH0xJLU7NTUgtQimCwTB6dUA2PFkwOyW7ea u10zUnt4xtHhyXw/t1oV8zeB3z65b5mYc2h3kUd1X1+wwaTY878fu5WyhKyPKPO56KIs9UG8 t+BkjZbIcbO9O6xvVQm5O2xrijOdP+dj64emD1PeB5b26bUK9Vhv/bRGI/3Cufz6O0xSk1p/ MlX5ySlwMYruPSBaHTUjWaHCRImlOCPRUIu5qDgRAD/2LTxlAgAA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1539 Lines: 41 On 06/06/2015 03:53 AM, Vaishali Thakkar wrote: > In little endian cases, macro cpu_to_be16 unfolds to __swab16 which > provides special case for constants. In big endian cases, > __constant_cpu_to_be16 and cpu_to_be16 expand directly to the > same expression. So, replace __constant_cpu_to_be16 with > cpu_to_be16 with the goal of getting rid of the definition of > __constant_cpu_to_be16 completely. > > The semantic patch that performs this transformation is as follows: > > @@expression x;@@ > > - __constant_cpu_to_be16(x) > + cpu_to_be16(x) > > Signed-off-by: Vaishali Thakkar Reviewed-by: Andrzej Hajda > --- > drivers/media/i2c/s5k5baf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/media/i2c/s5k5baf.c b/drivers/media/i2c/s5k5baf.c > index 297ef04..7a43b55 100644 > --- a/drivers/media/i2c/s5k5baf.c > +++ b/drivers/media/i2c/s5k5baf.c > @@ -491,7 +491,7 @@ static void s5k5baf_write_arr_seq(struct s5k5baf *state, u16 addr, > v4l2_dbg(3, debug, c, "i2c_write_seq(count=%d): %*ph\n", count, > min(2 * count, 64), seq); > > - buf[0] = __constant_cpu_to_be16(REG_CMD_BUF); > + buf[0] = cpu_to_be16(REG_CMD_BUF); > > while (count > 0) { > int n = min_t(int, count, ARRAY_SIZE(buf) - 1); -- 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/