Skip to content

Commit

Permalink
ARM: bcm2835: Add a compat string for bcm2836 machine probe
Browse files Browse the repository at this point in the history
Supporting the 2836 requires using the new interrupt controller, which
we have support for.

Signed-off-by: Eric Anholt <eric@anholt.net>
  • Loading branch information
Eric Anholt committed Dec 22, 2015
1 parent 57e5c6d commit c1be3c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/arm/mach-bcm/board_bcm2835.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ static void __init bcm2835_init(void)
}

static const char * const bcm2835_compat[] = {
#ifdef CONFIG_ARCH_MULTI_V6
"brcm,bcm2835",
#endif
#ifdef CONFIG_ARCH_MULTI_V7
"brcm,bcm2836",
#endif
NULL
};

Expand Down

0 comments on commit c1be3c1

Please sign in to comment.