From nobody Thu Apr 2 17:38:11 2026 Received: from mail.kernel-space.org (v2202511311555398556.powersrv.de [46.38.245.6]) (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 004972DB782 for ; Wed, 11 Feb 2026 15:58:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=46.38.245.6 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770825532; cv=none; b=ZS0GOhzJJhfojfV9Zshq4iZJ9YdWzFisWOyYFEdu/T7tUemsyaWVEXuHL3x0I35xJ5mPfwtTqwdQZu/XoPxAuzp3DM0GtKTlfaQo8FIaCWf/aUM6LQnVx6qWsrx/sAm6cywdNAJFlmY1GYWclzqSjTqBlCXaWVgHQ7pPXXdu8qc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770825532; c=relaxed/simple; bh=Ie26qq2f5tWJymekq1bXOSVS1Bo37wuWVQFvcDw9VrU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ZTdEQ+Xjbt+QgaZC1So2N76/L7jEWZTdQL2vrbquFRQ+bsBi2/5PxrL3g3Odhvfb3Z+Ja6LE6VlhCY+vOozm7BM/Xp8vEnngajhsM1YmKvQZ13Gd1sRaKQY015BTAkyk+72gNCY7/C2pwrFJ//DDcR1vIeNJDuIlY+STq+7Ju9c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=kernel-space.org; spf=pass smtp.mailfrom=kernel-space.org; dkim=pass (1024-bit key) header.d=kernel-space.org header.i=@kernel-space.org header.b=HF62fbgJ; arc=none smtp.client-ip=46.38.245.6 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=kernel-space.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kernel-space.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=kernel-space.org header.i=@kernel-space.org header.b="HF62fbgJ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel-space.org; s=s1; t=1770825128; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=tVrsLvve73fCCOH/zGbEo8haQecmJFK4H/1jlrycAdo=; b=HF62fbgJD9RA23aAOTSXPCe+knqhWV9qByypZ9vAB2ftyOMsAERJkOFZoqMkOampuF84hy EPWZqumDrlr6nRHnW7QAWiM3RCd+OvVa58SkXTJLFR6FXdRpUG923ChbNSm0DIBJH5hhnI Us7punzFI1zUYO2FrCw/USTNj3eYINE= Received: from archlinux ( [2a07:7e81:7daa:0:62cf:84ff:feee:627]) by oreshnik (OpenSMTPD) with ESMTPSA id b5b50138 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 11 Feb 2026 15:52:08 +0000 (UTC) From: Angelo Dureghello To: myungjoo.ham@samsung.com, cw00.choi@samsung.com Cc: linux-kernel@vger.kernel.org, Angelo Dureghello Subject: [PATCH] extcon: fix devm_extcon_dev_register comment Date: Wed, 11 Feb 2026 16:54:34 +0100 Message-ID: <20260211155434.7389-1-angelo@kernel-space.org> X-Mailer: git-send-email 2.52.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Angelo Dureghello Fix incomplete function comment. Signed-off-by: Angelo Dureghello --- drivers/extcon/devres.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/extcon/devres.c b/drivers/extcon/devres.c index f9d52e8ec5cf..7a23950ba82f 100644 --- a/drivers/extcon/devres.c +++ b/drivers/extcon/devres.c @@ -106,9 +106,11 @@ EXPORT_SYMBOL_GPL(devm_extcon_dev_free); * @dev: the device owning the extcon device being created * @edev: the extcon device to be registered * - * this function, that extcon device is automatically unregistered on driv= er - * detach. Internally this function calls extcon_dev_register() function. - * To get more information, refer that function. + * This function registers extcon device. Using this function extcon devic= e is + * automatically unregistered on driver detach. + * + * Internally this function calls extcon_dev_register() function. To get m= ore + * information, refer that function. * * If extcon device is registered with this function and the device needs = to be * unregistered separately, devm_extcon_dev_unregister() should be used. --=20 2.52.0