From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 C300D371CEA for ; Fri, 29 May 2026 23:00:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780095636; cv=none; b=C0QX4NffeZr9w0RgknR2qJOudo3E3L1E4ZQB6yIEsyACriqp+/UUQC5dRlIybje1OEdefC7zvswiY2ErE+NZaqs5FEkSJxxN5EozrEUR2h5LZq6fS0uUoJN29AngKv0NtvNrKjJo5zLDA+mzztCYpjO53Vjg+ifO7o4Ldwk8T70= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780095636; c=relaxed/simple; bh=e0OpHj1v1yY2veo5wcDHvu56JAF2BIn4AkXIdXyTRzo=; h=Message-ID:From:To:Cc:Subject:Date; b=lfjcivRxzA5EkTZ6V8B5lIImXAsoyZHjEbdoO93QcY3tQPSAw7VpC09mLCxjsVHKBhcLzBPiwhu76TQLxyrtYV7ubkiTWk493SBtcUMagtvYV+WWFzJFaVHQix638bW/HkocEdiYZ6JT2AHluvjDh0q15hwTfl8BLfVJhiPHXCI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ICb2cfpH; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ICb2cfpH" Received: by smtp.kernel.org (Postfix) with UTF8SMTPSA id 018AD1F00893; Fri, 29 May 2026 23:00:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780095635; bh=RzmcRw123l15nn4vB6X9OTXGp95+r67V/19YKJzmjbE=; h=From:To:Cc:Subject:Date; b=ICb2cfpH9Mh0TP+ZNlRD33jfG4ftA+93VlpgI9/qx8lPM2H7ZVmKE4oNo89WWpjnU aCECBuBvGZ5flh7PgBwD66HyQmFlulY+Fpwz2GydZhiASz/uPsGpNvacJoU6QaiH6j I7N1MIAQ4j0ix65N+4gTprTNpJpB26r5tZYC+b56zq6jxewvzglQuM6VQDTjEy/Oy5 M6NK1oyHqr05EjsGFr11lJOrPtl1yStHqL30SxOVYAhknGP+SjhbyXmve0XnYPMuB5 tXJMrtuFRlQuE+dv+ZAMZIHxla7fMgRLCobuOVGHs0MUJ17fMRkXxH4Xnce7QhF5dx scV7kmIAvjywQ== Message-ID: <8dd99ed23c68e626b5a872559c6509d2@kernel.org> From: Mark Brown To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Mark Brown Subject: [GIT PULL] regmap fixes for v7.1-rc5 Date: Sat, 30 May 2026 00:00:18 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The following changes since commit e7ae89a0c97ce2b68b0983cd01eda67cf373517d: Linux 7.1-rc5 (2026-05-24 13:48:06 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-fix-v7.1-rc5 for you to fetch changes up to 006c66d1d52f1905e6ccfb615cf27235e4e6e745: regmap: reject volatile update_bits() in cache-only mode (2026-05-28 15:15:46 +0100) ---------------------------------------------------------------- regmap: Fix for v7.1 Some other fixing in an API user turned up the fact that we weren't correctly applying cache only mode to volatile registers in regmap_update_bits(), causing us to try to access hardware that was powered off or otherwise not in a state to accept I/O. This fix returns an error instead, avoiding more serious consequences. ---------------------------------------------------------------- bui duc phuc (1): regmap: reject volatile update_bits() in cache-only mode drivers/base/regmap/regmap.c | 3 +++ 1 file changed, 3 insertions(+)