From 6c6bb5f62e2705ef18902908bbcf77b7f02d9019 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 24 Jul 2001 18:39:02 +0000 Subject: [PATCH] More cleanups svn path=/trunk/; revision=2094 --- reactos/drivers/input/keyboard/makefile | 22 ++++---- reactos/drivers/input/mouclass/.cvsignore | 2 + reactos/drivers/input/mouclass/makefile | 55 ++++++-------------- reactos/drivers/input/psaux/.cvsignore | 2 + reactos/drivers/input/psaux/controller.c | 5 +- reactos/drivers/input/psaux/makefile | 57 ++++++--------------- reactos/drivers/input/psaux/mouse.c | 5 +- reactos/drivers/input/psaux/psaux.c | 9 ++-- reactos/drivers/input/sermouse/.cvsignore | 2 + reactos/drivers/input/sermouse/makefile | 57 ++++++--------------- reactos/drivers/storage/class2/.cvsignore | 1 + reactos/drivers/storage/disk/.cvsignore | 1 + reactos/drivers/storage/scsiport/.cvsignore | 1 + 13 files changed, 86 insertions(+), 133 deletions(-) create mode 100644 reactos/drivers/input/mouclass/.cvsignore create mode 100644 reactos/drivers/input/psaux/.cvsignore create mode 100644 reactos/drivers/input/sermouse/.cvsignore diff --git a/reactos/drivers/input/keyboard/makefile b/reactos/drivers/input/keyboard/makefile index 6fc5da55745..5624274fe4d 100644 --- a/reactos/drivers/input/keyboard/makefile +++ b/reactos/drivers/input/keyboard/makefile @@ -1,11 +1,13 @@ -# $Id: makefile,v 1.5 2001/07/15 21:19:00 rex Exp $ +# $Id: makefile,v 1.6 2001/07/24 18:37:46 ekohl Exp $ # # PATH_TO_TOP = ../../.. -TARGET=keyboard +TARGET = keyboard -OBJECTS = $(TARGET).o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a +OBJECTS = $(TARGET).o $(TARGET).coff + +LIBS = $(PATH_TO_TOP)/ntoskrnl/ntoskrnl.a CFLAGS = -D__NTDRIVER__ -O2 -I. -g @@ -14,7 +16,7 @@ all: $(TARGET).sys $(TARGET).sys.unstripped .phony: all clean: - - $(RM) $(TARGET).o $(TARGET).coff junk.tmp base.tmp temp.exp $(TARGET).sys $(TARGET).sys.unstripped + - $(RM) *.o *.sym $(TARGET).coff junk.tmp base.tmp temp.exp $(TARGET).sys $(TARGET).sys.unstripped .phony: clean @@ -23,12 +25,14 @@ install: $(FLOPPY_DIR)/drivers/$(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys $(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys -dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys +dist: $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys + $(CP) $(TARGET).sys $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys -../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys - $(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys +$(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) $(LIBS) -$(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) +$(TARGET).coff: $(PATH_TO_TOP)/include/reactos/buildno.h $(TARGET).rc WARNINGS_ARE_ERRORS = yes -include ../../../rules.mak +include $(PATH_TO_TOP)/rules.mak diff --git a/reactos/drivers/input/mouclass/.cvsignore b/reactos/drivers/input/mouclass/.cvsignore new file mode 100644 index 00000000000..438594da4df --- /dev/null +++ b/reactos/drivers/input/mouclass/.cvsignore @@ -0,0 +1,2 @@ +mouclass.coff +mouclass.sys.unstripped diff --git a/reactos/drivers/input/mouclass/makefile b/reactos/drivers/input/mouclass/makefile index 56c0fe37993..9500dc33f1c 100644 --- a/reactos/drivers/input/mouclass/makefile +++ b/reactos/drivers/input/mouclass/makefile @@ -1,20 +1,22 @@ -# $Id: makefile,v 1.5 2001/07/15 21:19:00 rex Exp $ +# $Id: makefile,v 1.6 2001/07/24 18:38:04 ekohl Exp $ # # TARGET = mouclass PATH_TO_TOP = ../../.. -OBJECTS = $(TARGET).o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a +OBJECTS = $(TARGET).o $(TARGET).coff + +LIBS = $(PATH_TO_TOP)/ntoskrnl/ntoskrnl.a CFLAGS = -D__NTDRIVER__ -O2 -I. -all: $(TARGET).sys +all: $(TARGET).sys $(TARGET).sys.unstripped .phony: all clean: - - $(RM) $(TARGET).o $(TARGET).coff junk.tmp base.tmp temp.exp mouclass.sys + - $(RM) *.o *.sym $(TARGET).coff junk.tmp base.tmp temp.exp $(TARGET).sys $(TARGET).sys.unstripped .phony: clean @@ -23,38 +25,13 @@ install: $(FLOPPY_DIR)/drivers/$(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys $(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys -dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys - $(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -$(TARGET).sys: $(OBJECTS) - $(CC) \ - -specs=../../svc_specs \ - -mdll \ - -o junk.tmp \ - -Wl,--defsym,_end=end \ - -Wl,--defsym,_edata=__data_end__ \ - -Wl,--defsym,_etext=etext \ - -Wl,--base-file,base.tmp \ - $(OBJECTS) - - $(RM) junk.tmp - $(DLLTOOL) \ - --dllname $(TARGET).sys \ - --base-file base.tmp \ - --output-exp temp.exp \ - --kill-at - - $(RM) base.tmp - $(CC) \ - --verbose \ - -Wl,--image-base,0x10000 \ - -Wl,-e,_DriverEntry@8 \ - -Wl,temp.exp \ - -specs=../../svc_specs \ - -mdll \ - -o $(TARGET).sys \ - $(OBJECTS) - - $(RM) temp.exp - - -include ../../../rules.mak +dist: $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys + $(CP) $(TARGET).sys $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) $(LIBS) + +$(TARGET).coff: $(PATH_TO_TOP)/include/reactos/buildno.h $(TARGET).rc + +include $(PATH_TO_TOP)/rules.mak diff --git a/reactos/drivers/input/psaux/.cvsignore b/reactos/drivers/input/psaux/.cvsignore new file mode 100644 index 00000000000..f61f1c9ba43 --- /dev/null +++ b/reactos/drivers/input/psaux/.cvsignore @@ -0,0 +1,2 @@ +psaux.coff +psaux.sys.unstripped diff --git a/reactos/drivers/input/psaux/controller.c b/reactos/drivers/input/psaux/controller.c index d48ad27d131..408650e356a 100644 --- a/reactos/drivers/input/psaux/controller.c +++ b/reactos/drivers/input/psaux/controller.c @@ -84,6 +84,9 @@ void controller_wait(void) int controller_wait_for_input(void) { int timeout; + LARGE_INTEGER Millisecond_Timeout; + + Millisecond_Timeout.QuadPart = 1; for(timeout = KEYBOARD_INIT_TIMEOUT; timeout > 0; timeout--) { @@ -92,7 +95,7 @@ int controller_wait_for_input(void) if(return_value >= 0) return return_value; // Sleep for one millisecond - KeDelayExecutionThread (KernelMode, FALSE, 1); + KeDelayExecutionThread (KernelMode, FALSE, &Millisecond_Timeout); } DbgPrint("PSAUX: Timed out on waiting for input from controller\n"); diff --git a/reactos/drivers/input/psaux/makefile b/reactos/drivers/input/psaux/makefile index 0b83d202766..24ab933a5bc 100644 --- a/reactos/drivers/input/psaux/makefile +++ b/reactos/drivers/input/psaux/makefile @@ -1,20 +1,22 @@ -# $Id: makefile,v 1.5 2001/07/15 21:19:00 rex Exp $ +# $Id: makefile,v 1.6 2001/07/24 18:38:40 ekohl Exp $ # # +PATH_TO_TOP = ../../.. + TARGET = psaux -PATH_TO_TOP = ../../.. +OBJECTS = $(TARGET).o controller.o mouse.o $(TARGET).coff -OBJECTS = $(TARGET).o controller.o mouse.o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a +LIBS = $(PATH_TO_TOP)/ntoskrnl/ntoskrnl.a CFLAGS = -D__NTDRIVER__ -O2 -I. -all: $(TARGET).sys +all: $(TARGET).sys $(TARGET).sys.unstripped .phony: all clean: - - $(RM) *.o $(TARGET).coff junk.tmp base.tmp temp.exp psaux.sys + - $(RM) *.o *.sym $(TARGET).coff junk.tmp base.tmp temp.exp $(TARGET).sys $(TARGET).sys.unstripped .phony: clean @@ -23,38 +25,13 @@ install: $(FLOPPY_DIR)/drivers/$(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys $(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys -dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys - $(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -$(TARGET).sys: $(OBJECTS) - $(CC) \ - -specs=../../svc_specs \ - -mdll \ - -o junk.tmp \ - -Wl,--defsym,_end=end \ - -Wl,--defsym,_edata=__data_end__ \ - -Wl,--defsym,_etext=etext \ - -Wl,--base-file,base.tmp \ - $(OBJECTS) - - $(RM) junk.tmp - $(DLLTOOL) \ - --dllname $(TARGET).sys \ - --base-file base.tmp \ - --output-exp temp.exp \ - --kill-at - - $(RM) base.tmp - $(CC) \ - --verbose \ - -Wl,--image-base,0x10000 \ - -Wl,-e,_DriverEntry@8 \ - -Wl,temp.exp \ - -specs=../../svc_specs \ - -mdll \ - -o $(TARGET).sys \ - $(OBJECTS) - - $(RM) temp.exp - - -include ../../../rules.mak +dist: $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys + $(CP) $(TARGET).sys $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) $(LIBS) + +$(TARGET).coff: $(PATH_TO_TOP)/include/reactos/buildno.h $(TARGET).rc + +include $(PATH_TO_TOP)/rules.mak diff --git a/reactos/drivers/input/psaux/mouse.c b/reactos/drivers/input/psaux/mouse.c index f99b1c154b6..41c408564dc 100644 --- a/reactos/drivers/input/psaux/mouse.c +++ b/reactos/drivers/input/psaux/mouse.c @@ -148,6 +148,9 @@ BOOLEAN detect_ps2_port(void) { int loops; BOOLEAN return_value = FALSE; + LARGE_INTEGER Millisecond_Timeout; + + Millisecond_Timeout.QuadPart = 1; return TRUE; // The rest of this code fails under BOCHs @@ -177,7 +180,7 @@ BOOLEAN detect_ps2_port(void) break; } - KeDelayExecutionThread (KernelMode, FALSE, 1); + KeDelayExecutionThread (KernelMode, FALSE, &Millisecond_Timeout); } return return_value; diff --git a/reactos/drivers/input/psaux/psaux.c b/reactos/drivers/input/psaux/psaux.c index 1d4d0b9cc69..0352b06164d 100644 --- a/reactos/drivers/input/psaux/psaux.c +++ b/reactos/drivers/input/psaux/psaux.c @@ -36,7 +36,8 @@ BOOLEAN MouseSynchronizeRoutine(PVOID Context) return(FALSE); } -VOID PS2MouseStartIo(PDEVICE_OBJECT DeviceObject, PIRP Irp) +VOID STDCALL +PS2MouseStartIo(PDEVICE_OBJECT DeviceObject, PIRP Irp) { PDEVICE_EXTENSION DeviceExtension = DeviceObject->DeviceExtension; @@ -49,7 +50,8 @@ VOID PS2MouseStartIo(PDEVICE_OBJECT DeviceObject, PIRP Irp) } } -NTSTATUS PS2MouseDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp) +NTSTATUS STDCALL +PS2MouseDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp) { PIO_STACK_LOCATION stk = IoGetCurrentIrpStackLocation(Irp); NTSTATUS Status; @@ -100,7 +102,8 @@ VOID PS2MouseInitializeDataQueue(PVOID Context) DeviceExtension->MouseInputData = ExAllocatePool(NonPagedPool, sizeof(MOUSE_INPUT_DATA) * MOUSE_BUFFER_SIZE); */ } -NTSTATUS PS2MouseInternalDeviceControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) +NTSTATUS STDCALL +PS2MouseInternalDeviceControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) { PDEVICE_EXTENSION DeviceExtension = DeviceObject->DeviceExtension; PIO_STACK_LOCATION Stack = IoGetCurrentIrpStackLocation(Irp); diff --git a/reactos/drivers/input/sermouse/.cvsignore b/reactos/drivers/input/sermouse/.cvsignore new file mode 100644 index 00000000000..67f8da8a561 --- /dev/null +++ b/reactos/drivers/input/sermouse/.cvsignore @@ -0,0 +1,2 @@ +sermouse.coff +sermouse.sys.unstripped diff --git a/reactos/drivers/input/sermouse/makefile b/reactos/drivers/input/sermouse/makefile index 7b733063cd2..e34e2588dfd 100644 --- a/reactos/drivers/input/sermouse/makefile +++ b/reactos/drivers/input/sermouse/makefile @@ -1,20 +1,22 @@ -# $Id: makefile,v 1.5 2001/07/15 21:19:00 rex Exp $ +# $Id: makefile,v 1.6 2001/07/24 18:39:02 ekohl Exp $ # # +PATH_TO_TOP = ../../.. + TARGET = sermouse -PATH_TO_TOP = ../../.. +OBJECTS = $(TARGET).o $(TARGET).coff -OBJECTS = $(TARGET).o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a +LIBS = $(PATH_TO_TOP)/ntoskrnl/ntoskrnl.a CFLAGS = -D__NTDRIVER__ -O2 -I. -all: $(TARGET).sys +all: $(TARGET).sys $(TARGET).sys.unstripped .phony: all clean: - - $(RM) $(TARGET).o $(TARGET).coff junk.tmp base.tmp temp.exp sermouse.sys + - $(RM) *.o *.sym $(TARGET).coff junk.tmp base.tmp temp.exp $(TARGET).sys $(TARGET).sys.unstripped .phony: clean @@ -23,38 +25,13 @@ install: $(FLOPPY_DIR)/drivers/$(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys $(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys -dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys - $(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys - -$(TARGET).sys: $(OBJECTS) - $(CC) \ - -specs=../../svc_specs \ - -mdll \ - -o junk.tmp \ - -Wl,--defsym,_end=end \ - -Wl,--defsym,_edata=__data_end__ \ - -Wl,--defsym,_etext=etext \ - -Wl,--base-file,base.tmp \ - $(OBJECTS) - - $(RM) junk.tmp - $(DLLTOOL) \ - --dllname $(TARGET).sys \ - --base-file base.tmp \ - --output-exp temp.exp \ - --kill-at - - $(RM) base.tmp - $(CC) \ - --verbose \ - -Wl,--image-base,0x10000 \ - -Wl,-e,_DriverEntry@8 \ - -Wl,temp.exp \ - -specs=../../svc_specs \ - -mdll \ - -o $(TARGET).sys \ - $(OBJECTS) - - $(RM) temp.exp - - -include ../../../rules.mak +dist: $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys + $(CP) $(TARGET).sys $(PATH_TO_TOP)/$(DIST_DIR)/drivers/$(TARGET).sys + +$(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) $(LIBS) + +$(TARGET).coff: $(PATH_TO_TOP)/include/reactos/buildno.h $(TARGET).rc + +include $(PATH_TO_TOP)/rules.mak diff --git a/reactos/drivers/storage/class2/.cvsignore b/reactos/drivers/storage/class2/.cvsignore index 0467d962ace..f815d776ae1 100644 --- a/reactos/drivers/storage/class2/.cvsignore +++ b/reactos/drivers/storage/class2/.cvsignore @@ -2,3 +2,4 @@ base.tmp junk.tmp temp.exp class2.coff +class2.sys.unstripped diff --git a/reactos/drivers/storage/disk/.cvsignore b/reactos/drivers/storage/disk/.cvsignore index 0f04c558089..0449f2873a4 100644 --- a/reactos/drivers/storage/disk/.cvsignore +++ b/reactos/drivers/storage/disk/.cvsignore @@ -2,3 +2,4 @@ base.tmp junk.tmp temp.exp disk.coff +disk.sys.unstripped \ No newline at end of file diff --git a/reactos/drivers/storage/scsiport/.cvsignore b/reactos/drivers/storage/scsiport/.cvsignore index 018435382ad..71e1e2107ac 100644 --- a/reactos/drivers/storage/scsiport/.cvsignore +++ b/reactos/drivers/storage/scsiport/.cvsignore @@ -2,3 +2,4 @@ base.tmp junk.tmp temp.exp scsiport.coff +scsiport.sys.unstripped -- 2.17.1