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 5A11313DBBC; Tue, 27 Feb 2024 14:17:25 +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=1709043445; cv=none; b=ZIATdJ4oYbuIYTN9opI0lo9i9xjlTTAwu0E0rjX63CswgeIsFoAVSsu1/xG9A69EbMnfACTaa95NEy5kiliTgBT33v6z00QeUqxjN74fj42FYfxWAYUYpc3JhBqhlx7kkklCsVkYj+QO44fAuKuTGD1tggqP3zpt0q2SssqH4o0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709043445; c=relaxed/simple; bh=eEIjLRUpeTn+dDTo8SNPoLntLJp2SLagnof957O1jpY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=I24qq2YN9v60FeLqKaJAZpZKPSFh22qlv8Jq3loLiTStsSB2QVCYDDasgK+kK9OrBF9oLzdUCyqtOYOJeO7e3tdtfQfpvxxLSVG/qDw6nX67s/HwipX2JEEBQNpe0Oj8v1Td1cHA2bSEFN7FUm/jZzTLemw1L/UTM3rszzqmPJM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DZMR9HQY; 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="DZMR9HQY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA1E7C433C7; Tue, 27 Feb 2024 14:17:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1709043445; bh=eEIjLRUpeTn+dDTo8SNPoLntLJp2SLagnof957O1jpY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DZMR9HQY0m4qhhI64n1WHbvxcM0ihallAqC9aLBb8tWymHHMA7naRRIfAq0yqQriZ erC+mytRLeSVk/g15ogCk1sc3SY/1cJ8HP9dk/n/QH3DSbp8gm6CrduBAyu0PRHgEl HPV5nqdJbfS/ZfGgw0WLYUm7Ni6aZPT9e6XEnjEI= 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.1 111/195] ARM: ep93xx: Add terminator to gpiod_lookup_table Date: Tue, 27 Feb 2024 14:26:12 +0100 Message-ID: <20240227131614.129179043@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240227131610.391465389@linuxfoundation.org> References: <20240227131610.391465389@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-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), + { } }, };