rpi: use constant "unknown board" DT filename
To simplify support for new SoCs, just use a constant filename for the unknown case. In practice this case shouldn't be hit anyway, so the filename isn't relevant, and certainly doesn't need to differentiate between SoCs. If a user has an as-yet-unknown board, they can override this value in the environment anyway. Signed-off-by: Stephen Warren <swarren@wwwdotorg.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
adb91ec72b
commit
29937caab3
|
|
@ -99,11 +99,7 @@ struct rpi_model {
|
||||||
|
|
||||||
static const struct rpi_model rpi_model_unknown = {
|
static const struct rpi_model rpi_model_unknown = {
|
||||||
"Unknown model",
|
"Unknown model",
|
||||||
#ifdef CONFIG_BCM2836
|
"bcm283x-rpi-other.dtb",
|
||||||
"bcm2836-rpi-other.dtb",
|
|
||||||
#else
|
|
||||||
"bcm2835-rpi-other.dtb",
|
|
||||||
#endif
|
|
||||||
false,
|
false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue