From nobody Sat May 10 03:17:13 2025 Delivered-To: importer2@patchew.org Received-SPF: pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; envelope-from=linux-kernel-owner@vger.kernel.org; helo=vger.kernel.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1620314702; cv=none; d=zohomail.com; s=zohoarc; b=mioec+QukVar8XinGe8NxKtsfGo/B459D9sAS831mjb46w2pLt6vDkJ5Jzw6fpJNcMuc8i2o5dZ8xVbwIUg9zTWdWFtRr8ptJYUbwVeG5La6yqbjvs4mhEg+wYN2RFRRfUCS2MAyDhohF/RlO9DI2Tv4U+r7eMtQQld5D4uWcYU= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1620314702; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:MIME-Version:Message-ID:References:Sender:Subject:To; bh=wXGOUkYOOE8eDy0arBScgP/6QM6Zj39A0sC7rb/tn78=; b=Z8cWfG5hILWBL9YtwpZGtoWFm5PRZB09H8WanaqBhNREg31XiE4rWS0TcoApOtdAJGpSaW0l1ErjItt3g6Wr+/kSmq1VQLk8mj9S8A2wx7V45lq4YlvfQTTJCOhrGQgVDCgZxCL+ez60bo/HVKfwu5tAj52tcfNoNw6WLZdkfhw= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=fail; spf=pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mx.zohomail.com with SMTP id 1620314702490575.9747490263513; Thu, 6 May 2021 08:25:02 -0700 (PDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235515AbhEFPZx (ORCPT ); Thu, 6 May 2021 11:25:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:38090 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235203AbhEFPYd (ORCPT ); Thu, 6 May 2021 11:24:33 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 6302D613DD; Thu, 6 May 2021 15:23:30 +0000 (UTC) Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lefqa-000RvW-F4; Thu, 06 May 2021 17:23:28 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620314610; bh=cJU/MoL9RhqbU2INYkiDGdONljhoe6cy+RDqPfC2nLY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UyCbVExH+NwBj1QdDOx4732l++dPlXl2AI3D9IaSiXUR2om/2OIUBSLPt7fDvS/eI oAVBYhQUhRUCCm08M9MCnpMFqZAQoKR+ldG+x4i+2KnKgc2K5l/CHlB24k0oOmlaHU VWgwZCb8nZcAZPc+8MqgWzLzJzSps5w5/5VWNBNyxWfboKKqCFUZWrdE0IIXLrqqkO fChAiecs4PwbBwnll5q8duaDj3qSQZIvG1DSbWb8IRIDDMpoXEmpSo19+8jiHby1fw ZyYlPmQBYcid2vURirsFVZe+7TkRwJH7X3/NTUxEq/2NP9nxUqHqOpECEAVcLDxQf6 9wvRcWOUaav/w== From: Mauro Carvalho Chehab Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , Mauro Carvalho Chehab , Sakari Ailus , linux-kernel@vger.kernel.org, linux-media@vger.kernel.org Subject: [PATCH v5 15/30] media: i2c: ov13858: use pm_runtime_resume_and_get() Date: Thu, 6 May 2021 17:23:11 +0200 Message-Id: <3378b00f77814d32b48dbca76066eaba5c1bcc94.1620314098.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org X-ZohoMail-DKIM: fail (Header signature does not verify) Content-Type: text/plain; charset="utf-8" Commit dd8088d5a896 ("PM: runtime: Add pm_runtime_resume_and_get to deal wi= th usage counter") added pm_runtime_resume_and_get() in order to automatically handle dev->power.usage_count decrement on errors. Use the new API, in order to cleanup the error check logic. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/i2c/ov13858.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/media/i2c/ov13858.c b/drivers/media/i2c/ov13858.c index 4a2885ff0cbe..9598c0b19603 100644 --- a/drivers/media/i2c/ov13858.c +++ b/drivers/media/i2c/ov13858.c @@ -1472,11 +1472,9 @@ static int ov13858_set_stream(struct v4l2_subdev *sd= , int enable) } =20 if (enable) { - ret =3D pm_runtime_get_sync(&client->dev); - if (ret < 0) { - pm_runtime_put_noidle(&client->dev); + ret =3D pm_runtime_resume_and_get(&client->dev); + if (ret < 0) goto err_unlock; - } =20 /* * Apply default & customized values --=20 2.30.2