Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: a5abba989deceb731047425812d268daf7536575 authored by Linus Torvalds on 08 March 2011, 05:09:37 UTC
Linux 2.6.38-rc8
Tip revision: a5abba9
r4k-timer.h
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2008 by Ralf Baechle (ralf@linux-mips.org)
 */
#ifndef __ASM_R4K_TYPES_H
#define __ASM_R4K_TYPES_H

#include <linux/compiler.h>

#ifdef CONFIG_SYNC_R4K

extern void synchronise_count_master(void);
extern void synchronise_count_slave(void);

#else

static inline void synchronise_count_master(void)
{
}

static inline void synchronise_count_slave(void)
{
}

#endif

#endif /* __ASM_R4K_TYPES_H */
back to top