xref: /netbsd-src/sys/arch/mips/mips/procfs_machdep.c (revision 23c8222edbfb0f0932d88a8351d3a0cf817dfb9e)
1 /* $NetBSD: procfs_machdep.c,v 1.3 2003/07/15 02:43:39 lukem Exp $ */
2 
3 #include <sys/cdefs.h>
4 __KERNEL_RCSID(0, "$NetBSD: procfs_machdep.c,v 1.3 2003/07/15 02:43:39 lukem Exp $");
5 
6 #include <sys/param.h>
7 #include <sys/systm.h>
8 #include <sys/mount.h>
9 #include <sys/vnode.h>
10 #include <miscfs/procfs/procfs.h>
11 
12 /*
13  * Linux-style /proc/cpuinfo.
14  * Only used when procfs is mounted with -o linux.
15  */
16 int
17 procfs_getcpuinfstr(char *buf, int *len)
18 {
19 	*len = 0;
20 
21 	return 0;
22 }
23