swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: b0af8dfdd67699e25083478c63eedef2e72ebd85 authored by Linus Torvalds on 28 June 2011, 02:12:22 UTC
Linux 3.0-rc5
Tip revision: b0af8df
delay.c
/*
 *	arch/m68knommu/lib/delay.c
 *
 *	(C) Copyright 2004, Greg Ungerer <gerg@snapgear.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <asm/param.h>
#include <asm/delay.h>

EXPORT_SYMBOL(udelay);

void udelay(unsigned long usecs)
{
	_udelay(usecs);
}

back to top