From patchwork Thu Sep 28 23:20:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Reichel X-Patchwork-Id: 13403584 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9C793E743CE for ; Thu, 28 Sep 2023 23:21:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229653AbjI1XVC (ORCPT ); Thu, 28 Sep 2023 19:21:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41460 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229541AbjI1XVC (ORCPT ); Thu, 28 Sep 2023 19:21:02 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C143419D; Thu, 28 Sep 2023 16:21:00 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 238A6C433C7; Thu, 28 Sep 2023 23:21:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695943260; bh=k64X9q04AEuNGrWkclSxZJW6XBP6jAVc1KA+H9h5J5E=; h=Date:From:To:Cc:Subject:From; b=ZnYJ5ZaAC1DG+zN5R3A6CWFGNLLLAOYMZuzaF4kqwaCrmXT9K0QFm+Xe22tyCFUMa 2nlABDwfIdFTrrnS8sUpzTrAZOEIZK8ceZH9xVVvEV90pUbjpWDI+BIydA5Mvsylrn 8G6I2dJDGpHhFO1Wezd9p8gIjcOfT5x911gW8qR3/ei6ioZP4Pm3FzFnHdgpZfLitq 7Wq6+bThyz92Oqy3yPZYLBAEb8e2e/aC+uu9qBih77UDWRd96WABk1nKVxJqEWC7d+ gRAx0y1yJGep9HFmKZ6HmaXV+Im/A4arndjmkEgrMhxU7pspwas+ZAiisyTThJn4qz jBpbtGsqRWAMw== Received: by mercury (Postfix, from userid 1000) id 10DD010605D8; Fri, 29 Sep 2023 01:20:58 +0200 (CEST) Date: Fri, 29 Sep 2023 01:20:58 +0200 From: Sebastian Reichel To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: [GIT PULL] power-supply fixes for 6.6-rc Message-ID: <20230928232058.twqyaqzrwqsrvjmu@mercury.elektranox.org> MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Hi Linus, All patches have been in linux-next for a week, no issues have been reported. Please pull. Greetings, -- Sebastian The following changes since commit 0bb80ecc33a8fb5a682236443c1e740d5c917d1d: Linux 6.6-rc1 (2023-09-10 16:28:41 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git tags/for-v6.6-rc for you to fetch changes up to 488ef44c068e79752dba8eda0b75f524f111a695: power: supply: rk817: Fix node refcount leak (2023-09-20 19:37:15 +0200) ---------------------------------------------------------------- Power Supply Fixes for 6.6 cycle * core: fix use after free during device release * ab8500: avoid reporting multiple batteries to userspace * rk817: fix DT node resource leak * misc. small fixes, mostly for compiler warnings/errors ---------------------------------------------------------------- Chris Morgan (1): power: supply: rk817: Fix node refcount leak Christophe JAILLET (1): power: supply: rt9467: Fix rt9467_run_aicl() Dan Carpenter (1): power: supply: ucs1002: fix error code in ucs1002_get_property() David Thompson (1): pwr-mlxbf: extend Kconfig to include gpio-mlxbf3 dependency Harshit Mogalapalli (1): power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() Justin Stitt (1): power: vexpress: fix -Wvoid-pointer-to-enum-cast warning Krzysztof Kozlowski (1): power: reset: use capital "OR" for multiple licenses in SPDX Linus Walleij (1): power: supply: ab8500: Set typing and props Nicolas Frattaroli (1): power: supply: rk817: Add missing module alias Randy Dunlap (1): power: supply: rt5033_charger: recognize EXTCON setting Sebastian Reichel (1): power: supply: core: fix use after free in uevent drivers/power/reset/Kconfig | 2 +- drivers/power/reset/pwr-mlxbf.c | 2 +- drivers/power/reset/vexpress-poweroff.c | 2 +- drivers/power/supply/Kconfig | 1 + drivers/power/supply/ab8500_btemp.c | 9 +-------- drivers/power/supply/ab8500_chargalg.c | 2 +- drivers/power/supply/mt6370-charger.c | 2 +- drivers/power/supply/power_supply_sysfs.c | 7 +++++++ drivers/power/supply/rk817_charger.c | 16 +++++++++++++--- drivers/power/supply/rt9467-charger.c | 4 ++-- drivers/power/supply/ucs1002_power.c | 3 ++- 11 files changed, 31 insertions(+), 19 deletions(-)