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 1FF9515B0EC; Tue, 17 Jun 2025 16:47:41 +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=1750178861; cv=none; b=fBCtlBU6JDrzmttWzRYYUvFYK5mPr2yr7g449aGdArCFUMpUlagdPFBzSvnSceN3ICGpRk2P3Mo075YCE7opseZfuKllKMFFvdB2h/wfmGo50pc4hgfdzddx1y5QuYOAGlnANQlfBTvcHpw7PTbZxq4GKrKXRlGrkalrlEhIWgs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750178861; c=relaxed/simple; bh=v3HHkL+MoFnO207V4RUFjhAjjEinvIB/WQwR2cRYWEk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OPB1vU0IDZHen8IeNqsVKbL3NdrK1JQ99SQNE3xUjsKOQ0DvMsLyMr4FpoWAgX8RXboU+ClbyxKojmtnjwT2BR+MU8Qx1vFNZRWeh/aKeOgK+Vvs+OHLjlfWhPO5e7ubaz0YbYE2BHXxu4JSYlDhj5i7Jgk8ajrgVXNJVu5A3Uc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Ud0A3nxo; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Ud0A3nxo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 817EBC4CEE3; Tue, 17 Jun 2025 16:47:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750178861; bh=v3HHkL+MoFnO207V4RUFjhAjjEinvIB/WQwR2cRYWEk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ud0A3nxonZYfRRGeHQrcnP1UmM83e5qJZaxtdHxMbxi++HSj4nv8ApNqO62rUX6/L mFtlCETtVkX/ADDkUtFywppmJZOwTHNu5Rb11I/Fm4mbHoUHd1Su8oUuxmnRYTYz3Z Wut+vQcrxpMvbIg/yFG1MoIvDDk44x+xWjUDWpG4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Matteo Martelli , Marius Cristea , David Lechner , Jonathan Cameron , Sasha Levin Subject: [PATCH 6.15 544/780] iio: adc: PAC1934: fix typo in documentation link Date: Tue, 17 Jun 2025 17:24:12 +0200 Message-ID: <20250617152513.662987018@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250617152451.485330293@linuxfoundation.org> References: <20250617152451.485330293@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Marius Cristea [ Upstream commit 52c43d80fa8370eb877fc63b1fc1eec67e1b1410 ] Fix a typo,(PAC1934 -> PAC193X), into the link from an application note related to the ACPI device definition. Fixes: 0fb528c8255b ("iio: adc: adding support for PAC193x") Reported-by: Matteo Martelli Closes: https://patch.msgid.link/172794015844.2520.11909797050797595912@njaxe.localdomain Signed-off-by: Marius Cristea Reviewed-by: David Lechner Link: https://patch.msgid.link/20250424-pac1934-doc_link-v1-1-9832445cb270@microchip.com Signed-off-by: Jonathan Cameron Signed-off-by: Sasha Levin --- drivers/iio/adc/pac1934.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/adc/pac1934.c b/drivers/iio/adc/pac1934.c index 20802b7f49ea8..09fe88eb3fb04 100644 --- a/drivers/iio/adc/pac1934.c +++ b/drivers/iio/adc/pac1934.c @@ -1081,7 +1081,7 @@ static int pac1934_chip_identify(struct pac1934_chip_info *info) /* * documentation related to the ACPI device definition - * https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ApplicationNotes/ApplicationNotes/PAC1934-Integration-Notes-for-Microsoft-Windows-10-and-Windows-11-Driver-Support-DS00002534.pdf + * https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ApplicationNotes/ApplicationNotes/PAC193X-Integration-Notes-for-Microsoft-Windows-10-and-Windows-11-Driver-Support-DS00002534.pdf */ static int pac1934_acpi_parse_channel_config(struct i2c_client *client, struct pac1934_chip_info *info) -- 2.39.5