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 40BA51419AD; Tue, 27 Feb 2024 14:04:56 +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=1709042696; cv=none; b=K5ReaOH1v+EqcGbwSRDOrY4J3OVlrzHdHn5z2RhMPIKdvruWCrLugizurnziuXcoKCQ6KmmK4eJWX8GuNnNPNokXPICmkRj/qAyW5VrasHRFv4Km2//Gq9Z5EvyRvLjHWe6m0NNJS/s2kLukSlEdoaFfN2zct8iI8Y1zZ35Hggo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709042696; c=relaxed/simple; bh=nyWg11nl1d7d8yLjs9Me55wirWD1kctyrQejdN2U8e8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ABEdVWoGBrT0KDD17K+ILrEYDtsVK/HMIupLe6zDg98u5Kz7zmIQ5+oxJdHTNHYzdhyLUlKU+5+T8mYHCARGpkoiOsYR71iMdJjJ0G/I4SdzJdnmBorWjYpwmG6SrGhXEsFxN3F+a5nGkEcXPJZWulwvAGYWc+bkfdcwqi1hdtk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Dkn7BRFr; 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="Dkn7BRFr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C0233C43399; Tue, 27 Feb 2024 14:04:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1709042696; bh=nyWg11nl1d7d8yLjs9Me55wirWD1kctyrQejdN2U8e8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Dkn7BRFrfS57Fx8PqM6iYdUnDKWZDxqrbjitRFAQu/rtWfdD97norxAjBP8sNGHdA dlLgYhZKGw8rN1LOZM2xnuSoxTzJsjlJMa9h8LM/G7mkBNUT1dL2tHQCZNycf6eYgy PPhJh2eTXKGwigxz3ZlGQfyc7h/lmnXeE70eU63s= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andy Shevchenko , Nikita Shubin , Linus Walleij , Alexander Sverdlin , Arnd Bergmann Subject: [PATCH 5.15 087/245] ARM: ep93xx: Add terminator to gpiod_lookup_table Date: Tue, 27 Feb 2024 14:24:35 +0100 Message-ID: <20240227131618.053495467@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240227131615.098467438@linuxfoundation.org> References: <20240227131615.098467438@linuxfoundation.org> User-Agent: quilt/0.67 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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Nikita Shubin commit fdf87a0dc26d0550c60edc911cda42f9afec3557 upstream. Without the terminator, if a con_id is passed to gpio_find() that does not exist in the lookup table the function will not stop looping correctly, and eventually cause an oops. Cc: stable@vger.kernel.org Fixes: b2e63555592f ("i2c: gpio: Convert to use descriptors") Reported-by: Andy Shevchenko Signed-off-by: Nikita Shubin Reviewed-by: Linus Walleij Acked-by: Alexander Sverdlin Signed-off-by: Alexander Sverdlin Link: https://lore.kernel.org/r/20240205102337.439002-1-alexander.sverdlin@gmail.com Signed-off-by: Arnd Bergmann Signed-off-by: Greg Kroah-Hartman --- arch/arm/mach-ep93xx/core.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c @@ -337,6 +337,7 @@ static struct gpiod_lookup_table ep93xx_ GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN), GPIO_LOOKUP_IDX("G", 0, NULL, 1, GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN), + { } }, };