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 24432634 for ; Sat, 11 Jan 2025 11:55:59 +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=1736596560; cv=none; b=Iwzv+xl6qKcpJxM+ePrf6k5lfIJqzIIhpVkgEJwuAujFNx2V7GlvDXgJ9G+adwKLGwYZAQ4N9uIm47jLsMn87U7R2DV5TXyuTeQpxvbpF5DrEIb7Xc/0jEfjqwWCHYCXVVUY6vXRBx3qk0E1jLS5r0rIxhH01S/swn8FEZL+fsU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736596560; c=relaxed/simple; bh=p9ler0Akv5V97a7/JP8OYUqhZGoUBSluUpIZcfhuGiQ=; h=Message-ID:Date:MIME-Version:From:To:Cc:Subject:Content-Type; b=fXG5btbuYETL3BiGdjAcLMZdVoc2WUqI677C/8eg2aeCe/Oqdw+NB7XTHLG2HWj7yv636jtknnAWPyhodrJsM/u5fFrQSqbh4mbriM7RzKPEfLe+7yJbY9kMjiT6Bas/VrOKfAn/7dy5WD77XD6M9FfWgcrBZuzChGRNe1pTaFE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=tULKwwi1; 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="tULKwwi1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DAE5CC4CED2; Sat, 11 Jan 2025 11:55:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1736596559; bh=p9ler0Akv5V97a7/JP8OYUqhZGoUBSluUpIZcfhuGiQ=; h=Date:From:To:Cc:Subject:From; b=tULKwwi1uJW3xUczu+YUDEXDjOJNcsEG7RRYuSe5mjunYrJAzdZACGbubh7HQQ7KV HixCvQDRCgdnx/dw683IJ6bSaYMLZ4XRhpTf5DvYyQTKHTGHR62iMR1AED106cncos 8SUwki1hyOksGJ3Xg0TSp5hGOKTe1JovxTI/yvQ45DMB+hFO9jiwG/nQUH1UGuRlE7 +llMm26snKjS3ftWLkEAdJl86J/O+VSNMAo4k6AiArO24Oa2fNGu1j2MxviRZAs4f8 si+2Lf5NvkG+pKyg2FilV+EDEhn3gB2CBKxdXahe4HrKa/E3xUE/AOWzMhrMA9dX56 iOGKAncGQ//4w== Message-ID: Date: Sat, 11 Jan 2025 20:55:56 +0900 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird From: Chanwoo Choi Content-Language: en-US To: Greg Kroah-Hartman Cc: Linux Kernel Mailing List , Chanwoo Choi , Chanwoo Choi Subject: [GIT PULL] extcon next for 6.14 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dear Greg, This is extcon-next pull request for v6.14. I add detailed description of this pull request on below. Please pull extcon with following updates. Best Regards, Chanwoo Choi The following changes since commit 40384c840ea1944d7c5a392e8975ed088ecf0b37: Linux 6.13-rc1 (2024-12-01 14:28:56 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-6.14 for you to fetch changes up to 7041ed0dde8319991b59003c414f0bda5192b041: extcon: Drop explicit initialization of struct i2c_device_id::driver_data to 0 (2024-12-08 21:59:40 +0900) ---------------------------------------------------------------- Update extcon next for v6.14 Detailed description for this pull request: - Fix null pointer check of memory allocation on extcon-rtk-type-c.c. - Add EXTCON subsystem documentation including the detailed description/example. - Drop unneeded init of struct i2c_device_id:driver_data on extcon-fsa9480/pth5150.c. ---------------------------------------------------------------- Charles Han (1): extcon: realtek: fix NULL deref check in extcon_rtk_type_c_probe Uwe Kleine-König (1): extcon: Drop explicit initialization of struct i2c_device_id::driver_data to 0 anish kumar (1): Documentation: extcon: add documentation for Extcon subsystem Documentation/driver-api/extcon.rst | 255 ++++++++++++++++++++++++++++++++++++ Documentation/driver-api/index.rst | 1 + MAINTAINERS | 1 + drivers/extcon/extcon-fsa9480.c | 2 +- drivers/extcon/extcon-ptn5150.c | 2 +- drivers/extcon/extcon-rtk-type-c.c | 2 + 6 files changed, 261 insertions(+), 2 deletions(-) create mode 100644 Documentation/driver-api/extcon.rst