From patchwork Sat Apr 27 11:13:16 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 792772 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 32D3F48CC6; Sat, 27 Apr 2024 11:13:19 +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=1714216400; cv=none; b=Pjyjv2w4NQ8tyt+XeRFYy+tI4JdVmF/UIWHAM6oPcSEGg3JpjZvGYd65LVI4BwaRkwj3r7ifFYAcklt68KwpS8yAjvpXDGrqMEWDaHIOk+yAEZVydFEwYPNBv4jKwDSxhMSzjvWmlzxAVPJFNeb+aDQR6GXwzoHD+DhX8hYeMvM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714216400; c=relaxed/simple; bh=ymBpIlkzIlQEK4Ww4HzCrur/CoKjo8sLVsaWkEO0DNE=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=IP4YQk9YZGnq+Dg+56426E8Xi0KPzswbw4dlFD8vt248BiSHrxEr2utrsgpZ3rrrjdboc7qTtQyrCtVNQ3xYxV0sL2F4GSrS393uYUt245E2phf77GQS5BUYDujttu8b9cfWtcgK9IkZux2fKCoUeW7HnQ244eQS0+wAHBMQItk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NjVQcemr; 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="NjVQcemr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA729C113CE; Sat, 27 Apr 2024 11:13:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1714216399; bh=ymBpIlkzIlQEK4Ww4HzCrur/CoKjo8sLVsaWkEO0DNE=; h=Date:From:To:Cc:Subject:From; b=NjVQcemr4PkvmgMpWd0w/AJ9vsJYLXcXpfJ9CON87eTdDUuYvriG973QgQpGwNFP/ icRUvgisPnGTQv7V72lDY2Fmou+FV7lwUsMyAJevsviJHY3NNvI9hvCdfdkTl/kFzo xm2j4dcbEW7pFI2aJjY02Ts2GbRIuAGwMDxSv18lQ7BpGaikOS4Gls6eAm0c8tyw29 SV930nthwBa65OmSakXi8x1gQoOm7TnqHunooEQg21rkjf7uJJlyfdooLj6RUmldtR k40aQTSmPYb2J1FveyVGOmoGa7QZxqf6VCQYNu0qo1skKVnmKV6ab2fwwDDuDUEQ88 +uwgncXNU2Mzw== Date: Sat, 27 Apr 2024 13:13:16 +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.9-rc6 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 ed30a4a51bb196781c8058073ea720133a65596f: Linux 6.9-rc5 (2024-04-21 12:35:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git tags/i2c-for-6.9-rc6 for you to fetch changes up to 91811a31b68d3765b3065f4bb6d7d6d84a7cfc9f: i2c: smbus: fix NULL function pointer dereference (2024-04-27 12:57:57 +0200) ---------------------------------------------------------------- Fix a race condition in the at24 eeprom handler, a NULL pointer exception in the I2C core for controllers only using target modes, drop a MAINTAINERS entry, and fix an incorrect DT binding for at24. ---------------------------------------------------------------- Daniel Okazaki (1): eeprom: at24: fix memory corruption race condition Guenter Roeck (1): MAINTAINERS: Drop entry for PCA9541 bus master selector Rob Herring (1): dt-bindings: eeprom: at24: Fix ST M24C64-D compatible schema Wolfram Sang (2): Merge tag 'at24-fixes-for-v6.9-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux into i2c/for-current i2c: smbus: fix NULL function pointer dereference with much appreciated quality assurance from ---------------------------------------------------------------- Baruch Siach (1): (Test) i2c: smbus: fix NULL function pointer dereference Marek Vasut (1): (Rev.) dt-bindings: eeprom: at24: Fix ST M24C64-D compatible schema Documentation/devicetree/bindings/eeprom/at24.yaml | 5 +---- MAINTAINERS | 6 ------ drivers/i2c/i2c-core-base.c | 12 ++++++------ drivers/misc/eeprom/at24.c | 18 +++++++++--------- 4 files changed, 16 insertions(+), 25 deletions(-)