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 8480919F115 for ; Fri, 4 Jul 2025 14:31:20 +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=1751639481; cv=none; b=Zl1Fv067biPT53QX2bcNeuQGjVSu6Xz0gSRwT7az2MZAJtQ4jyR5WATTiWC45vRkgr/FkGWqqZ7Lnwo5vo3aU3zdFJPxVMAglm9mvdnU6kGzi9g3bcWjl9cz1hNr/yMhi8MTAEuPTOCZnUYGa7X8b/W/3OJMgD2Fg/t3nnOQdgQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751639481; c=relaxed/simple; bh=qdaqtqURyHNMppB9SWLM0VOmut5udll4t58+pZiOHeE=; h=Subject:To:From:Date:Message-ID:MIME-Version:Content-Type; b=AJAo9iVv8LS8r9A5K0NNa7w0JO/DaImqY/Rripn+R7mZRDcAIHLKIjHBahjltSIrOK7gs7gAIM2B0ddgYhG+88e7HMduyiud4qvqqWUXQkoe5MyueX6pt/sMiy0mz3ZUuLeZfq7emtyBOhEUFJnOHiMasZWU3HL/XLQg/PCTklA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MFE7PFuP; 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="MFE7PFuP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C01CAC4CEE3; Fri, 4 Jul 2025 14:31:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1751639480; bh=qdaqtqURyHNMppB9SWLM0VOmut5udll4t58+pZiOHeE=; h=Subject:To:From:Date:From; b=MFE7PFuPsN2apKnkn/is639WF7FRGIMH0l7w+0b5MEKLmUOGBHkBA6BvLtFCXvC1E ZsWTtnDJV+/4n5Z7tYTRBOOZLAtalkGtLRaj1EpZOzazHQqQ0ByWIfwjYv70sLmUkP 0KKbrnV9Md4BovZETp7LQMVVV40y5EW9g9pO6JfM= Subject: patch "iio: adc: axp20x_adc: Add missing sentinel to AXP717 ADC channel maps" added to char-misc-linus To: wens@csie.org,Jonathan.Cameron@huawei.com,Stable@vger.kernel.org From: Date: Fri, 04 Jul 2025 16:30:50 +0200 Message-ID: <2025070450-canopy-monorail-6d26@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit This is a note to let you know that I've just added the patch titled iio: adc: axp20x_adc: Add missing sentinel to AXP717 ADC channel maps to my char-misc git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git in the char-misc-linus branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will hopefully also be merged in Linus's tree for the next -rc kernel release. If you have any questions about this process, please let me know. >From 3281ddcea6429f7bc1fdb39d407752dd1371aba9 Mon Sep 17 00:00:00 2001 From: Chen-Yu Tsai Date: Sat, 7 Jun 2025 21:56:27 +0800 Subject: iio: adc: axp20x_adc: Add missing sentinel to AXP717 ADC channel maps The AXP717 ADC channel maps is missing a sentinel entry at the end. This causes a KASAN warning. Add the missing sentinel entry. Fixes: 5ba0cb92584b ("iio: adc: axp20x_adc: add support for AXP717 ADC") Signed-off-by: Chen-Yu Tsai Link: https://patch.msgid.link/20250607135627.2086850-1-wens@kernel.org Cc: Signed-off-by: Jonathan Cameron --- drivers/iio/adc/axp20x_adc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/iio/adc/axp20x_adc.c b/drivers/iio/adc/axp20x_adc.c index 71584ffd3632..1b49325ec1ce 100644 --- a/drivers/iio/adc/axp20x_adc.c +++ b/drivers/iio/adc/axp20x_adc.c @@ -187,6 +187,7 @@ static struct iio_map axp717_maps[] = { .consumer_channel = "batt_chrg_i", .adc_channel_label = "batt_chrg_i", }, + { } }; /* -- 2.50.0