Skip to content

Commit 1fa68a3

Browse files
marcanJassiBrar
authored andcommitted
mailbox: apple: Bind to generic compatibles
As with other blocks, we intend to have drivers bind to generic compatibles as long as there are no SoC-specific quirks. This allows forward-compatibility with future SoCs. No upstream DTs instantiate this yet, so it's still safe to make this breaking change. Signed-off-by: Hector Martin <[email protected]> Reviewed-by: Sven Peter <[email protected]> Signed-off-by: Jassi Brar <[email protected]>
1 parent b29d644 commit 1fa68a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/mailbox/apple-mailbox.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,8 @@ static const struct apple_mbox_hw apple_mbox_m3_hw = {
364364
};
365365

366366
static const struct of_device_id apple_mbox_of_match[] = {
367-
{ .compatible = "apple,t8103-asc-mailbox", .data = &apple_mbox_asc_hw },
368-
{ .compatible = "apple,t8103-m3-mailbox", .data = &apple_mbox_m3_hw },
367+
{ .compatible = "apple,asc-mailbox-v4", .data = &apple_mbox_asc_hw },
368+
{ .compatible = "apple,m3-mailbox-v2", .data = &apple_mbox_m3_hw },
369369
{}
370370
};
371371
MODULE_DEVICE_TABLE(of, apple_mbox_of_match);

0 commit comments

Comments
 (0)