Cleanup - extraneous spaces and tab removal

date	2001.11.02.00.06.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:24:13 +00:00
parent ed91b6bf80
commit fef117ca12
2 changed files with 10 additions and 11 deletions

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acgcc.h - GCC specific defines, etc.
* $Revision: 1.14 $
* $Revision: 1.15 $
*
*****************************************************************************/
@ -235,17 +235,17 @@
* Math helper asm macros
*/
#define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \
asm("divl %2;" \
:"=a"(q32), "=d"(r32) \
:"r"(d32), \
"0"(n_lo), "1"(n_hi))
asm("divl %2;" \
:"=a"(q32), "=d"(r32) \
:"r"(d32), \
"0"(n_lo), "1"(n_hi))
#define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \
asm("shrl $1,%2;" \
"rcrl $1,%3;" \
:"=r"(n_hi), "=r"(n_lo) \
:"0"(n_hi), "1"(n_lo))
asm("shrl $1,%2;" \
"rcrl $1,%3;" \
:"=r"(n_hi), "=r"(n_lo) \
:"0"(n_hi), "1"(n_lo))
/*! [End] no source code translation !*/

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acmsvc.h - VC specific defines, etc.
* $Revision: 1.6 $
* $Revision: 1.7 $
*
*****************************************************************************/
@ -138,7 +138,6 @@
}
/* warn C4100: unreferenced formal parameter */
#pragma warning(disable:4100)