diff options
Diffstat (limited to 'arch/mips/cavium-octeon/setup.c')
-rw-r--r-- | arch/mips/cavium-octeon/setup.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/mips/cavium-octeon/setup.c b/arch/mips/cavium-octeon/setup.c index 09a83cd6bfe8..37ac229bebb6 100644 --- a/arch/mips/cavium-octeon/setup.c +++ b/arch/mips/cavium-octeon/setup.c | |||
@@ -469,8 +469,16 @@ static void __init init_octeon_system_type(void) | |||
469 | char const *board_type; | 469 | char const *board_type; |
470 | 470 | ||
471 | board_type = cvmx_board_type_to_string(octeon_bootinfo->board_type); | 471 | board_type = cvmx_board_type_to_string(octeon_bootinfo->board_type); |
472 | if (board_type == NULL) | 472 | if (board_type == NULL) { |
473 | board_type = "Unsupported Board"; | 473 | struct device_node *root; |
474 | int ret; | ||
475 | |||
476 | root = of_find_node_by_path("/"); | ||
477 | ret = of_property_read_string(root, "model", &board_type); | ||
478 | of_node_put(root); | ||
479 | if (ret) | ||
480 | board_type = "Unsupported Board"; | ||
481 | } | ||
474 | 482 | ||
475 | snprintf(octeon_system_type, sizeof(octeon_system_type), "%s (%s)", | 483 | snprintf(octeon_system_type, sizeof(octeon_system_type), "%s (%s)", |
476 | board_type, octeon_model_get_string(read_c0_prid())); | 484 | board_type, octeon_model_get_string(read_c0_prid())); |