From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 CA3873EC2DB; Wed, 20 May 2026 16:58:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779296340; cv=none; b=sf670JdwqN4BtGfOrgdR4JOvbyYllVOvRdkS83UgphLeI1VyA71vUQt2S6Rb6JBXqT1SvYJ5PQytUy3AGT+aBK0oUImD4uez2UMYj0In0NA8W2wRbC1o/9sCElHgxzgyrMFfQyzkxeaEXxsY1FozCBcpo/RCd2/xE3WC1KODD4k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779296340; c=relaxed/simple; bh=tjN1GfEXSjpSirrWyMVrhFtB87UfWGrc0L8GNQgDh5Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OFCJ2UXsLplKslpH0to1i06RQ7UqeByw2OXlh1cexTnG186B86t+W8nKjmr/OB+vYt5MPZGXZx1b7INzR8w7Etcl+cxxbyvLG/mwdVdFuKEqmhoplcuYHhRVWpabetW57H01R4xWRx7MGuG969V6pYcdFpx0/KbIU6/jox6YyX4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=aUo9LyDj; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="aUo9LyDj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 322D61F000E9; Wed, 20 May 2026 16:58:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779296339; bh=7JaTWFr73dEemT97+GSlF7e85ny/7bjFT5Gz8U7LXDY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=aUo9LyDjrv5ifotRvAPHO2v3fCh79GUHGz/qMSLvUd98xJ4n7rxZTwgNy+gRRq7DW BEpVtO1Qs8rDPUnSvvZNoW2+x0SYGLvPpe69mHVvpSAKfGns1fcATmdywKFUuW8GEY boZf18YnGduVmX7djSkidcnNvN/oxoCzqwnQqitw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ronald Claveau , Philipp Zabel , Sasha Levin Subject: [PATCH 7.0 0762/1146] reset: amlogic: t7: Fix null reset ops Date: Wed, 20 May 2026 18:16:52 +0200 Message-ID: <20260520162205.457487114@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162148.390695140@linuxfoundation.org> References: <20260520162148.390695140@linuxfoundation.org> User-Agent: quilt/0.69 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 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ronald Claveau [ Upstream commit 9797524ef2b69c6b187b55bd844eb72a8c1cbd99 ] Fix missing reset ops causing kernel null pointer dereference. This SOC's reset is currently not used yet. Signed-off-by: Ronald Claveau Fixes: fb4c31587adf ("reset: amlogic: add auxiliary reset driver support") Reviewed-by: Philipp Zabel Signed-off-by: Philipp Zabel Signed-off-by: Sasha Levin --- drivers/reset/amlogic/reset-meson.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/reset/amlogic/reset-meson.c b/drivers/reset/amlogic/reset-meson.c index 84610365a823c..c303e8590dd68 100644 --- a/drivers/reset/amlogic/reset-meson.c +++ b/drivers/reset/amlogic/reset-meson.c @@ -42,6 +42,7 @@ static const struct meson_reset_param meson_s4_param = { }; static const struct meson_reset_param t7_param = { + .reset_ops = &meson_reset_ops, .reset_num = 224, .reset_offset = 0x0, .level_offset = 0x40, -- 2.53.0