From patchwork Wed Nov 25 07:59:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Caesar Wang X-Patchwork-Id: 7696381 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id EEAF09F1BE for ; Wed, 25 Nov 2015 08:03:13 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7D8B3208CE for ; Wed, 25 Nov 2015 08:03:08 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8A2A0208C7 for ; Wed, 25 Nov 2015 08:03:07 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1a1V0v-0004Wo-MF; Wed, 25 Nov 2015 08:01:17 +0000 Received: from mail-pa0-f65.google.com ([209.85.220.65]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1a1V0X-0004Hn-7j; Wed, 25 Nov 2015 08:00:55 +0000 Received: by pacfl14 with SMTP id fl14so6074840pac.1; Wed, 25 Nov 2015 00:00:30 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=UGmoTEWb8RHGPn+UGwExRbdtygfU61h4I/Db9uaVeH8=; b=lNVF6gJRanlcGO7TkYdsrFSC6Vy8ScgcESPY84Z13ie/cRKSP2Dc+gkKEE0XJkVkL4 y/IBJ81EVaQAB8IyHJ2LTysAOCueVokHfS3hwEbE2AFvKWhfuvZtsQtEHJc0bNFaouF1 3hVRNE3kDV/LL8XlCJ1wI6wn2ZZECmQW65lIaH/fOWOLz34LkBvZ1COGrNz4SE+nFcDo /anLAItYSKxfsLkcKoxzS2WbHynSVB8eKS+pzOw4xFQUksbPSS1h1QQ3LmiQD37J5GY4 ctu6gDfTHn288sSkvMi3ncGiQ5YQj7r2WmtR+wz4S2oDhmEpDJfjOCcehz3zeiAg3AVw NfdQ== X-Received: by 10.98.68.83 with SMTP id r80mr29211295pfa.120.1448438430829; Wed, 25 Nov 2015 00:00:30 -0800 (PST) Received: from localhost.localdomain ([103.47.144.167]) by smtp.gmail.com with ESMTPSA id m70sm18863118pfi.65.2015.11.25.00.00.23 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 25 Nov 2015 00:00:29 -0800 (PST) From: Caesar Wang To: Eduardo Valentin Subject: [PATCH 2/5] thermal: rockchip: fix a impossible condition caused by the warning Date: Wed, 25 Nov 2015 15:59:34 +0800 Message-Id: <1448438377-29203-3-git-send-email-wxt@rock-chips.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1448438377-29203-1-git-send-email-wxt@rock-chips.com> References: <1448438377-29203-1-git-send-email-wxt@rock-chips.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20151125_000053_475643_0BBF7702 X-CRM114-Status: GOOD ( 11.44 ) X-Spam-Score: -2.4 (--) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Heiko Stuebner , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Zhang Rui , Dan Carpenter , Caesar Wang MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP As the Dan report the smatch check the thermal driver warning: drivers/thermal/rockchip_thermal.c:551 rockchip_configure_from_dt() warn: impossible condition '(thermal->tshut_temp > ((~0 >> 1))) => (s32min-s32max > s32max)' Since the Temperature is currently represented as int not long in the thermal driver. Fixes: commit 437df2172e8d ("thermal: rockchip: consistently use int for temperatures") Reported-by: Dan Carpenter Signed-off-by: Caesar Wang --- drivers/thermal/rockchip_thermal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/rockchip_thermal.c b/drivers/thermal/rockchip_thermal.c index 85a7930..ab236a1 100644 --- a/drivers/thermal/rockchip_thermal.c +++ b/drivers/thermal/rockchip_thermal.c @@ -548,7 +548,7 @@ static int rockchip_configure_from_dt(struct device *dev, thermal->tshut_temp = shut_temp; } - if (thermal->tshut_temp > INT_MAX) { + if (!(thermal->tshut_temp < INT_MAX)) { dev_err(dev, "Invalid tshut temperature specified: %d\n", thermal->tshut_temp); return -ERANGE;