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 78F86140391; Tue, 27 Feb 2024 13:37:21 +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=1709041041; cv=none; b=FBl/DlFjTXar82+OMaM7n+hPR8KfPnoUMIlyVVGcPmmQ5U9JovmErRnv73Ir2gDuqweFuOSzMHWXa6tkgn25w+HwzYQKyH+Gse1PmT6ozWFaTLeq/zx5FNeJce2Keux1J4XpzhwTPkdJjySmNS6iChdZmfIBDkjsjPYaioPCL4A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709041041; c=relaxed/simple; bh=e+XFjnWFb8HhTAUgbuYzQWJfvdZuOWU4qO3MLVhhJtY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=EKcFU2Z3VtoDMGO25MMpAI8l/mvIkbF+BEH0GS3oXqV7s9+MGxqQq9VkslCrSqaKToE6varETre07p60elGQmLCH7LkuZ5aEYd2smKu6ArnkoI1lKAsvWo3xqujiZvMVOSaTCXk+IjmlpJB4W47IqRP9AXt0lPANNrFmXgBlzQM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=AR5sOAV7; 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="AR5sOAV7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F1473C433F1; Tue, 27 Feb 2024 13:37:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1709041041; bh=e+XFjnWFb8HhTAUgbuYzQWJfvdZuOWU4qO3MLVhhJtY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AR5sOAV7/gha+U8zoCSyFGj3lmCqw62p36ZZCe5yPtoFAilPI4R/f4xUcuTKG14G1 DxQm8mJ6gpOAoihQD6ueH2djzxwcoBWGePrSkucfRww5bDGA50GmhmHFY9OANBXZb9 CyapgvwdKepHeWlo3ntDarZeGXJ6QE9feRGJTnjQ= 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 6.7 198/334] ARM: ep93xx: Add terminator to gpiod_lookup_table Date: Tue, 27 Feb 2024 14:20:56 +0100 Message-ID: <20240227131637.106690641@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240227131630.636392135@linuxfoundation.org> References: <20240227131630.636392135@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 6.7-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 @@ -339,6 +339,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), + { } }, };