https://github.com/torvalds/linux
Raw File
Tip revision: 693d92a1bbc9e42681c42ed190bd42b636ca876f authored by Linus Torvalds on 10 May 2011, 02:33:54 UTC
Linux 2.6.39-rc7
Tip revision: 693d92a
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