1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * type.c, System type for NEC VR4100 series.
4 *
5 * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org>
6 */
7
get_system_type(void)8 const char *get_system_type(void)
9 {
10 return "NEC VR4100 series";
11 }
12