diff options
| author | Tom Rini <[email protected]> | 2017-01-25 20:42:38 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-01-28 14:04:26 -0500 |
| commit | cd7b634413ea25838185db2faffc313d4d571fa9 (patch) | |
| tree | a3b69e1416aa130eb27c5a5a58fb95c123906ab3 /board | |
| parent | 4247fd69468e51af89083758d170a43608c5a4c5 (diff) | |
arm: Note vendor-required status of certain MACH_TYPE values
In the cases of some boards, a MACH_TYPE number is used which is either
not registered upstream or worse (for functionality) is re-using the
number of a different (or reference) platform instead. Make sure we
have a comment in these cases.
Cc: Albert ARIBAUD <[email protected]>
Cc: Walter Schweizer <[email protected]>
Cc: Stefan Roese <[email protected]>
Cc: Fabio Estevam <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Acked-by: Stefan Roese <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/quipos/cairo/cairo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/quipos/cairo/cairo.c b/board/quipos/cairo/cairo.c index 793aa902315..6b366dc43f1 100644 --- a/board/quipos/cairo/cairo.c +++ b/board/quipos/cairo/cairo.c @@ -45,7 +45,7 @@ int board_init(void) { gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ /* board id for Linux */ - gd->bd->bi_arch_number = MACH_TYPE_OMAP3_CAIRO; + gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* boot param addr */ gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); return 0; |
