Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: e783362eb54cd99b2cac8b3a9aeac942e6f6ac07 authored by Linus Torvalds on 23 January 2022, 08:12:53 UTC
Linux 5.17-rc1
Tip revision: e783362
type.c
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  type.c, System type for NEC VR4100 series.
 *
 *  Copyright (C) 2005	Yoichi Yuasa <yuasa@linux-mips.org>
 */

const char *get_system_type(void)
{
	return "NEC VR4100 series";
}
back to top