1*4882a593Smuzhiyun /** 2*4882a593Smuzhiyun * @file init.c 3*4882a593Smuzhiyun * 4*4882a593Smuzhiyun * @remark Copyright 2002 OProfile authors 5*4882a593Smuzhiyun * @remark Read the file COPYING 6*4882a593Smuzhiyun * 7*4882a593Smuzhiyun * @author John Levon <levon@movementarian.org> 8*4882a593Smuzhiyun */ 9*4882a593Smuzhiyun 10*4882a593Smuzhiyun #include <linux/errno.h> 11*4882a593Smuzhiyun #include <linux/init.h> 12*4882a593Smuzhiyun #include <linux/kernel.h> 13*4882a593Smuzhiyun #include <linux/oprofile.h> 14*4882a593Smuzhiyun oprofile_arch_init(struct oprofile_operations * ops)15*4882a593Smuzhiyunint __init oprofile_arch_init(struct oprofile_operations *ops) 16*4882a593Smuzhiyun { 17*4882a593Smuzhiyun return -ENODEV; 18*4882a593Smuzhiyun } 19*4882a593Smuzhiyun 20*4882a593Smuzhiyun oprofile_arch_exit(void)21*4882a593Smuzhiyunvoid oprofile_arch_exit(void) 22*4882a593Smuzhiyun { 23*4882a593Smuzhiyun } 24