From patchwork Wed Feb 9 11:35:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julia Lawall X-Patchwork-Id: 12740143 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E7EE1C433F5 for ; Wed, 9 Feb 2022 11:36:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:cc:To: From:Date:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=ellZ2VTKaXhZX4aeBJVjMX909a8D850QC871408C2Vw=; b=4TbvtlaYPCSKFq ONuwqh0pjQofqym/Usnh04gySpzUs9m3Wls/+x1H8f2QcuTGn+B3XbtuecKZCXq/A44P5E97P4uOK VeYd035YKLyfKj0ec0q+wAw6Q3WidfAXA47hUK+lI+qLJsg8wb/oSlpCjKJX/dohZjb2Gue0Ocnjy 8GLR6y8AAKTePPuf9kdyDnVXaZielGXLoRA/JfonT0icNRfomAgraHUiapPp5HhkdcvMiFIp6aRZN 7fsROwtBaPqZCFjizR9coT8PS3vWrOIE9sYAyFU1Ebnv2zz/BdNo5+pUeN0o2r1oU9xdxWZnXe5Ss G0YqnSzN5EqZRZZmPi/g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nHlG8-00HUOw-2o; Wed, 09 Feb 2022 11:35:40 +0000 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nHlFq-00HUMF-Rm; Wed, 09 Feb 2022 11:35:24 +0000 X-IronPort-AV: E=Sophos;i="5.88,355,1635199200"; d="scan'208";a="5432318" Received: from 173.121.68.85.rev.sfr.net (HELO hadrien) ([85.68.121.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2022 12:35:21 +0100 Date: Wed, 9 Feb 2022 12:35:20 +0100 (CET) From: Julia Lawall X-X-Sender: jll@hadrien To: Amit Kumar Mahapatra , Michal Simek , Tudor Ambarus , Michael Walle , Pratyush Yadav , Miquel Raynal , Richard Weinberger , Vignesh Raghavendra cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] mtd: spi-nor: fix minmax.cocci warnings Message-ID: User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220209_033523_221410_769ABC46 X-CRM114-Status: UNSURE ( 9.67 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: kernel test robot Simplify the cide using min(). Generated by: scripts/coccinelle/misc/minmax.cocci Fixes: 2747bc2106aa ("mtd: spi-nor: Add dual parallel and stacked mode support") CC: Amit Kumar Mahapatra Reported-by: kernel test robot Signed-off-by: kernel test robot Signed-off-by: Julia Lawall --- tree: https://github.com/Xilinx/linux-xlnx xlnx_rebase_v5.15 head: 1183ce490adb103e5e569b8ebd74c50c885ddc05 commit: 2747bc2106aa429773d9a932c799aa6229595148 [840/872] mtd: spi-nor: Add dual parallel and stacked mode support :::::: branch date: 7 days ago :::::: commit date: 7 days ago core.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) --- a/drivers/mtd/spi-nor/core.c +++ b/drivers/mtd/spi-nor/core.c @@ -2034,10 +2034,7 @@ static int spi_nor_read(struct mtd_info (offset << nor->shift); } } - if (len < rem_bank_len) - read_len = len; - else - read_len = rem_bank_len; + read_len = min(len, rem_bank_len); /* Wait till previous write/erase is done. */ ret = spi_nor_wait_till_ready(nor);