mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[SCSIPORT]
* Remove one time inclusions from the main header and put them back where they belong. * Improve header inclusions. CORE-7716 svn path=/trunk/; revision=61950
This commit is contained in:
parent
5810838528
commit
f7f5635283
4 changed files with 13 additions and 18 deletions
|
@ -1,10 +1 @@
|
|||
#include <ntddk.h>
|
||||
#include <srb.h>
|
||||
#include <scsi.h>
|
||||
#include <ntddscsi.h>
|
||||
#include <ntddstor.h>
|
||||
#include <ntdddisk.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "scsiport_int.h"
|
||||
#include <wdm.h>
|
||||
|
|
|
@ -29,17 +29,21 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
#ifndef NDEBUG
|
||||
#include <ntddk.h>
|
||||
#include <stdio.h>
|
||||
#include <scsi.h>
|
||||
#include <ntddscsi.h>
|
||||
#include <ntdddisk.h>
|
||||
|
||||
#define NDEBUG
|
||||
#endif
|
||||
#include <debug.h>
|
||||
|
||||
#include "scsiport_int.h"
|
||||
|
||||
ULONG InternalDebugLevel = 0x00;
|
||||
|
||||
#undef ScsiPortMoveMemory
|
||||
|
||||
/* TYPES *********************************************************************/
|
||||
|
||||
/* GLOBALS *******************************************************************/
|
||||
|
||||
static BOOLEAN
|
||||
|
@ -6407,5 +6411,4 @@ ScsiPortConvertPhysicalAddressToUlong(IN SCSI_PHYSICAL_ADDRESS Address)
|
|||
return(Address.u.LowPart);
|
||||
}
|
||||
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
* An enumeration containing the states in the timer DFA
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define VERSION "0.0.3"
|
||||
|
||||
#ifndef PAGE_ROUND_UP
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
#include <srb.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
@ -270,4 +270,3 @@ ScsiPortWriteRegisterUlong(
|
|||
{
|
||||
WRITE_REGISTER_ULONG(Register, Value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue