swh:1:snp:3c665ee4f67729f27f2e40193ab88e7298cf0fef
Raw File
Tip revision: a25f0944ba9b1d8a6813fd6f1a86f1bd59ac25a6 authored by Linus Torvalds on 13 November 2016, 18:32:32 UTC
Linux 4.9-rc5
Tip revision: a25f094
bfin_oprofile.c
/*
 * bfin_oprofile.c - Blackfin oprofile code
 *
 * Copyright 2004-2008 Analog Devices Inc.
 * Licensed under the GPL-2 or later.
 */

#include <linux/oprofile.h>
#include <linux/init.h>

int __init oprofile_arch_init(struct oprofile_operations *ops)
{
	return -1;
}

void oprofile_arch_exit(void)
{
}
back to top