From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 879E8324B16; Mon, 23 Mar 2026 14:22:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774275768; cv=none; b=h0fnZtWZcL0VrcEPybQ8wsztxnMjsYIPxvcrWdR5LaW4kwBAufG47yV2R/bLVUTG43GV1uyLdVmrFI7t8nm+AK1h0ibtWVPryl2Bjm8wPuzNxsUeErOCAB8FKkKiAbRJ5vw1hQoOuVJexcNo3IPhu9upDF9zf5iXLB+pGWfwAOg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774275768; c=relaxed/simple; bh=KsLFILM3KNCN/8hVYvpFIF8q/lHbSFeE6p9mJBHdEMM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=a58R42uSLHSmaCZDE2QvT2Nuzk6y1zg4XEaiRQCE0VP/wso8DRpgb7wOCjdquKjY23jSuzUj1jhMFUqaEM80CTZf0XL3YYj8Cr2IkDhStlAcmrEa4tFISmswpd109PEHa4k3GO21SjEqgMsGaKuEGahwdaiBVCbKG7RZ/2Ql2io= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=0AdSBUA8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="0AdSBUA8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 13773C4CEF7; Mon, 23 Mar 2026 14:22:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774275768; bh=KsLFILM3KNCN/8hVYvpFIF8q/lHbSFeE6p9mJBHdEMM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=0AdSBUA8mGQR369TgyEkdjA5GP6q6zrwM+fGiw+blsghyuEk7lrXN+BE0RHObdmaP Oz4QWNGLSynUE2YeO3dhB+oXphD9ybKg6xT8ODTIrS2gmxcfdxVfRVaIUu6jaalYxk Gun/RQPidLROfuBrcy4zMYNHErE0cHD5BPbLy+n8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Antoniu Miclaus , Stable@vger.kernel.org, Jonathan Cameron Subject: [PATCH 6.12 211/460] iio: gyro: mpu3050-i2c: fix pm_runtime error handling Date: Mon, 23 Mar 2026 14:43:27 +0100 Message-ID: <20260323134531.701328639@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260323134526.647552166@linuxfoundation.org> References: <20260323134526.647552166@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Antoniu Miclaus commit 91f950b4cbb1aa9ea4eb3999f1463e8044b717fb upstream. The return value of pm_runtime_get_sync() is not checked, and the function always returns success. This allows I2C mux operations to proceed even when the device fails to resume. Use pm_runtime_resume_and_get() and propagate its return value to properly handle resume failures. Fixes: 3904b28efb2c ("iio: gyro: Add driver for the MPU-3050 gyroscope") Signed-off-by: Antoniu Miclaus Cc: Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/gyro/mpu3050-i2c.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/iio/gyro/mpu3050-i2c.c +++ b/drivers/iio/gyro/mpu3050-i2c.c @@ -19,8 +19,7 @@ static int mpu3050_i2c_bypass_select(str struct mpu3050 *mpu3050 = i2c_mux_priv(mux); /* Just power up the device, that is all that is needed */ - pm_runtime_get_sync(mpu3050->dev); - return 0; + return pm_runtime_resume_and_get(mpu3050->dev); } static int mpu3050_i2c_bypass_deselect(struct i2c_mux_core *mux, u32 chan_id)