Skip to content

Commit ba30a6e

Browse files
pelwellpopcornmix
authored andcommitted
staging/vchiq_arm: Fix bcm2711 compatible string
Fixes: "vchiq: Add 36-bit address support" Signed-off-by: Phil Elwell <[email protected]>
1 parent a396c6d commit ba30a6e

File tree

1 file changed

+2
-2
lines changed
  • drivers/staging/vc04_services/interface/vchiq_arm

1 file changed

+2
-2
lines changed

drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ static struct vchiq_drvdata bcm2836_drvdata = {
150150
.cache_line_size = 64,
151151
};
152152

153-
static struct vchiq_drvdata bcm2838_drvdata = {
153+
static struct vchiq_drvdata bcm2711_drvdata = {
154154
.cache_line_size = 64,
155155
.use_36bit_addrs = true,
156156
};
@@ -3170,7 +3170,7 @@ void vchiq_platform_conn_state_changed(struct vchiq_state *state,
31703170
static const struct of_device_id vchiq_of_match[] = {
31713171
{ .compatible = "brcm,bcm2835-vchiq", .data = &bcm2835_drvdata },
31723172
{ .compatible = "brcm,bcm2836-vchiq", .data = &bcm2836_drvdata },
3173-
{ .compatible = "brcm,bcm2838-vchiq", .data = &bcm2838_drvdata },
3173+
{ .compatible = "brcm,bcm2711-vchiq", .data = &bcm2711_drvdata },
31743174
{},
31753175
};
31763176
MODULE_DEVICE_TABLE(of, vchiq_of_match);

0 commit comments

Comments
 (0)