Skip to content

Commit

Permalink
staging/vchiq_arm: Fix bcm2711 compatible string
Browse files Browse the repository at this point in the history
Fixes: "vchiq: Add 36-bit address support"

Signed-off-by: Phil Elwell <phil@raspberrypi.com>
  • Loading branch information
pelwell committed Jan 31, 2020
1 parent 4f96653 commit 78cd308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
Expand Up @@ -150,7 +150,7 @@ static struct vchiq_drvdata bcm2836_drvdata = {
.cache_line_size = 64,
};

static struct vchiq_drvdata bcm2838_drvdata = {
static struct vchiq_drvdata bcm2711_drvdata = {
.cache_line_size = 64,
.use_36bit_addrs = true,
};
Expand Down Expand Up @@ -3180,7 +3180,7 @@ void vchiq_platform_conn_state_changed(struct vchiq_state *state,
static const struct of_device_id vchiq_of_match[] = {
{ .compatible = "brcm,bcm2835-vchiq", .data = &bcm2835_drvdata },
{ .compatible = "brcm,bcm2836-vchiq", .data = &bcm2836_drvdata },
{ .compatible = "brcm,bcm2838-vchiq", .data = &bcm2838_drvdata },
{ .compatible = "brcm,bcm2711-vchiq", .data = &bcm2711_drvdata },
{},
};
MODULE_DEVICE_TABLE(of, vchiq_of_match);
Expand Down

0 comments on commit 78cd308

Please sign in to comment.