xref: /OK3568_Linux_fs/kernel/arch/microblaze/oprofile/microblaze_oprofile.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Microblaze oprofile code
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Copyright (C) 2009 Michal Simek <monstr@monstr.eu>
5*4882a593Smuzhiyun  * Copyright (C) 2009 PetaLogix
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * This file is subject to the terms and conditions of the GNU General Public
8*4882a593Smuzhiyun  * License. See the file "COPYING" in the main directory of this archive
9*4882a593Smuzhiyun  * for more details.
10*4882a593Smuzhiyun  */
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #include <linux/oprofile.h>
13*4882a593Smuzhiyun #include <linux/init.h>
14*4882a593Smuzhiyun 
oprofile_arch_init(struct oprofile_operations * ops)15*4882a593Smuzhiyun int __init oprofile_arch_init(struct oprofile_operations *ops)
16*4882a593Smuzhiyun {
17*4882a593Smuzhiyun 	return -1;
18*4882a593Smuzhiyun }
19*4882a593Smuzhiyun 
oprofile_arch_exit(void)20*4882a593Smuzhiyun void oprofile_arch_exit(void)
21*4882a593Smuzhiyun {
22*4882a593Smuzhiyun }
23