version 4.2.0
[fx2fw-sdcc] / fx2 / delay.h
index a159ac8..701c8f1 100644 (file)
@@ -1,72 +1,36 @@
 /* -*- c++ -*- */\r
-\r
 /*-----------------------------------------------------------------------------\r
-\r
  * Delay routines\r
-\r
  *-----------------------------------------------------------------------------\r
-\r
  * Code taken from USRP2 firmware (GNU Radio Project), version 3.0.2,\r
-\r
  * Copyright 2003 Free Software Foundation, Inc.\r
-\r
  *-----------------------------------------------------------------------------\r
-\r
  * This code is part of usbjtag. usbjtag is free software; you can redistribute\r
-\r
  * it and/or modify it under the terms of the GNU General Public License as\r
-\r
  * published by the Free Software Foundation; either version 2 of the License,\r
-\r
  * or (at your option) any later version. usbjtag is distributed in the hope\r
-\r
  * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied\r
-\r
  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-\r
  * GNU General Public License for more details.  You should have received a\r
-\r
  * copy of the GNU General Public License along with this program in the file\r
-\r
  * COPYING; if not, write to the Free Software Foundation, Inc., 51 Franklin\r
-\r
  * St, Fifth Floor, Boston, MA  02110-1301  USA\r
-\r
  *-----------------------------------------------------------------------------\r
-\r
  */\r
 \r
-\r
-\r
 #ifndef _DELAY_H_\r
-\r
 #define _DELAY_H_\r
 \r
-\r
-\r
 /*\r
-\r
  * delay for approximately usecs microseconds\r
-\r
  * Note limit of 255 usecs.\r
-\r
  */\r
-\r
 void udelay (unsigned char usecs);\r
 \r
-\r
-\r
 /*\r
-\r
  * delay for approximately msecs milliseconds\r
-\r
  */\r
-\r
 void mdelay (unsigned short msecs);\r
 \r
 \r
-\r
-\r
-\r
 #endif /* _DELAY_H_ */\r
-\r