From patchwork Sat Aug 17 19:58:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 820210 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 D6DE7646; Sat, 17 Aug 2024 19:58:22 +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=1723924702; cv=none; b=CUtrPDOm5Q1qsmGb+a3y7Qd9Q6aSWnHH92gk0m/PR7lp9kbNoLfyy3gZZGGysSVtwUegSQs6WvfGllwimwkxrs3XTZyR4QFLILs5Hpf+kdSEE40RadFn+qiUhwXD8P2WBRt9SeqD3U5QdFB2HH3YdRmTaDMUkIRZ/03pAwTp2So= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723924702; c=relaxed/simple; bh=nsBtUaVNqz8BztyQu7LhFBI0CLrd00qX8ELuGWKRIcI=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=u9kslH9KgNjGQcZ9l3tSUGquK/oPxWX8ftGrHFLLEKlaQIXN8p2oZl2nDB8IBaPXgI29020eEz05KsOtbn8NvnKnMXMyYgLvJpymbPjGIyCSo3H/QAEeFoJIpuCgYkKUlK8oaDkRWM7Ku3BBTR+xdz4R3BQ/FWIFH8qC+wIRvGI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gC/nnu7M; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gC/nnu7M" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A376AC116B1; Sat, 17 Aug 2024 19:58:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1723924702; bh=nsBtUaVNqz8BztyQu7LhFBI0CLrd00qX8ELuGWKRIcI=; h=Date:From:To:Cc:Subject:From; b=gC/nnu7M/xCiluApsQdsGInEx2ZczEfg5MYXu87YC5268oIMrJ53FGcGaCh2Eh6ED U79auSs2V1rIXI80LOVLNslgOxtOWaGFdanwMsYcZhFSLpvnT4Ug0Kr5/kwHEUJz3L hroVs/r+IMss6/35vw8KB+d9yqiQhsx0OyU3cYByfXell0VU/x5mNvSnF1/1V0qJoT mxkAEx9f8IwpydH834QxQ3yo43Kpt5OxRwfKDQ0mNkKN/Ec97uJd950AFm6x/XPMwG 0Cn/z5/mvZx6BDpcJU0hMBnneLyEIIv4ikgz3RMjlLeSDoh3sUuaCgUHpjx4pZ4HvU tHJgtUMbKehow== Date: Sat, 17 Aug 2024 21:58:18 +0200 From: Wolfram Sang To: Linus Torvalds Cc: linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org, Peter Rosin , Bartosz Golaszewski , Andi Shyti Subject: [PULL REQUEST] i2c-for-6.11-rc4 Message-ID: Mail-Followup-To: Wolfram Sang , Linus Torvalds , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org, Peter Rosin , Bartosz Golaszewski , Andi Shyti Precedence: bulk X-Mailing-List: linux-i2c@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline The following changes since commit 7c626ce4bae1ac14f60076d00eafe71af30450ba: Linux 6.11-rc3 (2024-08-11 14:27:14 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git tags/i2c-for-6.11-rc4 for you to fetch changes up to 87cea484951eba1d0342033241f80e49303d802c: Merge tag 'i2c-host-fixes-6.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-current (2024-08-16 16:23:51 +0200) ---------------------------------------------------------------- i2c-for-6.11-rc4 I2C core needs to fix a fix from rc3 by replacing IS_ENABLED() with IS_REACHABLE(). For host drivers, there are two fixes in this update: Tegra I2C Controller: Addresses a potential double-locking issue during probe. ACPI devices are not IRQ-safe when invoking runtime suspend and resume functions, so the irq_safe flag should not be set. Qualcomm GENI I2C Controller: Fixes an oversight in the exit path of the runtime_resume() function, which was missed in the previous release. ---------------------------------------------------------------- Andi Shyti (1): i2c: qcom-geni: Add missing geni_icc_disable in geni_i2c_runtime_resume Breno Leitao (1): i2c: tegra: Do not mark ACPI devices as irq safe Richard Fitzgerald (1): i2c: Use IS_REACHABLE() for substituting empty ACPI functions Wolfram Sang (1): Merge tag 'i2c-host-fixes-6.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-current with much appreciated quality assurance from ---------------------------------------------------------------- Andy Shevchenko (1): (Rev.) i2c: tegra: Do not mark ACPI devices as irq safe Dmitry Osipenko (1): (Rev.) i2c: tegra: Do not mark ACPI devices as irq safe Takashi Iwai (1): (Rev.) i2c: Use IS_REACHABLE() for substituting empty ACPI functions drivers/i2c/busses/i2c-qcom-geni.c | 4 +++- drivers/i2c/busses/i2c-tegra.c | 4 ++-- include/linux/i2c.h | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-)