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 8EF68426D06; Wed, 4 Feb 2026 15:06:46 +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=1770217606; cv=none; b=FK0iXCOc1ml6atJdwVtpCbFk5iSpkoNtjQ2D+idK0rM2Zc87l20t9OV8AAFpGLKDlFiENBFOHHJLEEXa82BZsbH63jIlD0gcA4cWWlGUYAryowbMFOg3NfMfpa9WsGuiVthqwF91nK/yWIt0JivbqDaeCUqelqYHwloxgMn5qxM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217606; c=relaxed/simple; bh=puE2166XQoEqLX1E/0wZAHvXKc/hlT0n1yEezxGbSfo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gBAwzOFIiewd+BNkvFmNWePZgM5MAzcLP7hyEDr4pjqd7EuLJYHE2S7W0FeVuLhArl9TC7xDfZWm3KbM9SNGNyj20uVZkM0c6GWz8BH7sFB+wit1S8VFvY9deG97smaoVvT9pm1M7F5undiY2P4611nerAZper5R5AQ5pjRawPo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=QviMOixz; 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="QviMOixz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA467C116C6; Wed, 4 Feb 2026 15:06:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770217606; bh=puE2166XQoEqLX1E/0wZAHvXKc/hlT0n1yEezxGbSfo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QviMOixz/0EGYpvFUQH4FAcvgxzaaHrubxAd7ynmJF2yrSoLOYe+Ej/aEAD6rjuAY D9aeXXWWvL/STyX1Q91ryy7wrxEness/BBw9U3oWQddyxESEkohDIFEIYlUo1PhZ+R eIuduXJ5H/qvYwwBgR4DMdyyUHsVbTSL1yVbm0XQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Neal Gompa , Janne Grunau , Vinod Koul Subject: [PATCH 6.1 066/280] dmaengine: apple-admac: Add "apple,t8103-admac" compatible Date: Wed, 4 Feb 2026 15:37:20 +0100 Message-ID: <20260204143912.030537962@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143909.614719725@linuxfoundation.org> References: <20260204143909.614719725@linuxfoundation.org> User-Agent: quilt/0.69 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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Janne Grunau commit 76cba1e60b69c9cd53b9127d017a7dc5945455b1 upstream. After discussion with the devicetree maintainers we agreed to not extend lists with the generic compatible "apple,admac" anymore [1]. Use "apple,t8103-admac" as base compatible as it is the SoC the driver and bindings were written for. [1]: https://lore.kernel.org/asahi/12ab93b7-1fc2-4ce0-926e-c8141cfe81bf@kernel.org/ Fixes: b127315d9a78 ("dmaengine: apple-admac: Add Apple ADMAC driver") Cc: stable@vger.kernel.org Reviewed-by: Neal Gompa Signed-off-by: Janne Grunau Link: https://patch.msgid.link/20251231-apple-admac-t8103-base-compat-v1-1-ec24a3708f76@jannau.net Signed-off-by: Vinod Koul Signed-off-by: Greg Kroah-Hartman --- drivers/dma/apple-admac.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/dma/apple-admac.c +++ b/drivers/dma/apple-admac.c @@ -937,6 +937,7 @@ static int admac_remove(struct platform_ } static const struct of_device_id admac_of_match[] = { + { .compatible = "apple,t8103-admac", }, { .compatible = "apple,admac", }, { } };