~ubuntu-branches/ubuntu/saucy/linux-n900/saucy

« back to all changes in this revision

Viewing changes to include/asm-generic/delay.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Poirier
  • Date: 2011-02-18 09:43:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110218094331-eyubsja4f9k0yhmq
Tags: 2.6.35-1.1
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __ASM_GENERIC_DELAY_H
 
2
#define __ASM_GENERIC_DELAY_H
 
3
 
 
4
extern void __udelay(unsigned long usecs);
 
5
extern void __delay(unsigned long loops);
 
6
 
 
7
#define udelay(n) __udelay(n)
 
8
 
 
9
#endif /* __ASM_GENERIC_DELAY_H */