[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20211218095450.GI1978@kadam>
Date: Sat, 18 Dec 2021 12:54:50 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: davidcomponentone@...il.com
Cc: zbr@...emap.net, gregkh@...uxfoundation.org,
yangyingliang@...wei.com, unixbhaskar@...il.com,
ivan.zaentsev@...enboard.ru, yang.guang5@....com.cn,
linux-kernel@...r.kernel.org, Zeal Robot <zealci@....com.cn>
Subject: Re: [PATCH] w1: w1_therm: use swap() to make code cleaner
On Sat, Dec 18, 2021 at 09:58:44AM +0800, davidcomponentone@...il.com wrote:
> @@ -1837,7 +1837,7 @@ static ssize_t alarms_store(struct device *device,
>
> /* Reorder if required th and tl */
> if (tl > th) {
> - tt = tl; tl = th; th = tt;
> + swap(tl, th);
> }
Delete the curly {} braces as well since they are no longer required.
regards,
dan carpenter
Powered by blists - more mailing lists