1 /* 2 * Sparc specific proc functions for linux-user 3 * 4 * SPDX-License-Identifier: GPL-2.0-or-later 5 */ 6 #ifndef SPARC_TARGET_PROC_H 7 #define SPARC_TARGET_PROC_H 8 9 static int open_cpuinfo(CPUArchState *cpu_env, int fd) 10 { 11 dprintf(fd, "type\t\t: sun4u\n"); 12 return 0; 13 } 14 #define HAVE_ARCH_PROC_CPUINFO 15 16 #endif /* SPARC_TARGET_PROC_H */ 17