root/include/asm-ppc/delay.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. muldiv

   1 #ifndef _PPC_DELAY_H
   2 #define _PPC_DELAY_H
   3 
   4 
   5 extern __inline__ void __delay(unsigned long );
   6 extern __inline__ void __udelay(unsigned long );
   7 
   8 
   9 extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c)
     /* [previous][next][first][last][top][bottom][index][help] */
  10 {
  11         return (a*b)/c;
  12 }
  13 
  14 #endif /* defined(_PPC_DELAY_H) */
  15 

/* [previous][next][first][last][top][bottom][index][help] */