From 9d731342289173f5134aa89299ea675379903ef8 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 4 Nov 2015 13:30:52 +0000 Subject: [PATCH] [HAL] Improve the FILE header section. Brought to you by Adam Stachowicz. CORE-10114 svn path=/trunk/; revision=69811 --- reactos/hal/halarm/generic/cache.S | 2 +- reactos/hal/halarm/generic/sysinfo.c | 2 +- reactos/hal/halppc/generic/beep.c | 2 +- reactos/hal/halppc/generic/bus.c | 2 +- reactos/hal/halppc/generic/cmos.c | 2 +- reactos/hal/halppc/generic/display.c | 2 +- reactos/hal/halppc/generic/dma.c | 2 +- reactos/hal/halppc/generic/drive.c | 2 +- reactos/hal/halppc/generic/enum.c | 2 +- reactos/hal/halppc/generic/fmutex.c | 2 +- reactos/hal/halppc/generic/font.c | 2 +- reactos/hal/halppc/generic/halinit.c | 2 +- reactos/hal/halppc/generic/irql.c | 2 +- reactos/hal/halppc/generic/isa.c | 2 +- reactos/hal/halppc/generic/misc.c | 2 +- reactos/hal/halppc/generic/pci.c | 2 +- reactos/hal/halppc/generic/portio.c | 2 +- reactos/hal/halppc/generic/processor.c | 2 +- reactos/hal/halppc/generic/profil.c | 2 +- reactos/hal/halppc/generic/reboot.c | 2 +- reactos/hal/halppc/generic/spinlock.c | 2 +- reactos/hal/halppc/generic/sysinfo.c | 2 +- reactos/hal/halppc/generic/timer.c | 2 +- reactos/hal/halppc/include/hal.h | 2 +- reactos/hal/halppc/up/halinit_up.c | 2 +- reactos/hal/halx86/acpi/busemul.c | 2 +- reactos/hal/halx86/acpi/halacpi.c | 2 +- reactos/hal/halx86/acpi/halpnpdd.c | 2 +- reactos/hal/halx86/amd64/mps.S | 2 +- reactos/hal/halx86/amd64/systimer.S | 2 +- reactos/hal/halx86/amd64/x86bios.c | 2 +- reactos/hal/halx86/apic/apic.c | 2 +- reactos/hal/halx86/apic/halinit_apic.c | 2 +- reactos/hal/halx86/apic/rtctimer.c | 2 +- reactos/hal/halx86/apic/tsc.c | 2 +- reactos/hal/halx86/generic/bios.c | 2 +- reactos/hal/halx86/generic/dma.c | 2 +- reactos/hal/halx86/generic/misc.c | 2 +- reactos/hal/halx86/generic/spinlock.c | 2 +- reactos/hal/halx86/generic/systimer.S | 2 +- reactos/hal/halx86/generic/trap.S | 2 +- reactos/hal/halx86/legacy/bus/bushndlr.c | 2 +- reactos/hal/halx86/legacy/bus/cmosbus.c | 2 +- reactos/hal/halx86/legacy/bus/isabus.c | 2 +- reactos/hal/halx86/legacy/bus/pcibus.c | 2 +- reactos/hal/halx86/legacy/bus/sysbus.c | 2 +- reactos/hal/halx86/legacy/bussupp.c | 2 +- reactos/hal/halx86/legacy/halpcat.c | 2 +- reactos/hal/halx86/legacy/halpnpdd.c | 2 +- reactos/hal/halx86/up/halinit_mini.c | 2 +- reactos/hal/halx86/up/halinit_up.c | 2 +- reactos/hal/halx86/up/pic.c | 2 +- reactos/hal/halx86/xbox/halinit_xbox.c | 2 +- 53 files changed, 53 insertions(+), 53 deletions(-) diff --git a/reactos/hal/halarm/generic/cache.S b/reactos/hal/halarm/generic/cache.S index c4325a53768..9c266aa8ead 100644 --- a/reactos/hal/halarm/generic/cache.S +++ b/reactos/hal/halarm/generic/cache.S @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halarm/generic/cache.s + * FILE: hal/halarm/generic/cache.S * PURPOSE: Implements cache clean, invalidate routines for ARM machines * PROGRAMMERS: Copyright (C) 2005 ARM Ltd. */ diff --git a/reactos/hal/halarm/generic/sysinfo.c b/reactos/hal/halarm/generic/sysinfo.c index f48ae962bf5..1996947744e 100644 --- a/reactos/hal/halarm/generic/sysinfo.c +++ b/reactos/hal/halarm/generic/sysinfo.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halarm/generic/spinlock.c + * FILE: hal/halarm/generic/sysinfo.c * PURPOSE: HAL Information Routines * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halppc/generic/beep.c b/reactos/hal/halppc/generic/beep.c index 3a8b90707d9..178b7755086 100644 --- a/reactos/hal/halppc/generic/beep.c +++ b/reactos/hal/halppc/generic/beep.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/beep.c + * FILE: hal/halppc/generic/beep.c * PURPOSE: Speaker function (it's only one) * PROGRAMMER: Eric Kohl * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/bus.c b/reactos/hal/halppc/generic/bus.c index 9b708a296a5..9d2091aed9e 100644 --- a/reactos/hal/halppc/generic/bus.c +++ b/reactos/hal/halppc/generic/bus.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus.c + * FILE: hal/halppc/generic/bus.c * PURPOSE: Bus Support Routines * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/cmos.c b/reactos/hal/halppc/generic/cmos.c index 0f43a1348f4..faecb99cbb5 100644 --- a/reactos/hal/halppc/generic/cmos.c +++ b/reactos/hal/halppc/generic/cmos.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/cmos.c + * FILE: hal/halppc/generic/cmos.c * PURPOSE: CMOS Access Routines (Real Time Clock and LastKnownGood) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * Eric Kohl diff --git a/reactos/hal/halppc/generic/display.c b/reactos/hal/halppc/generic/display.c index 896c20d0c32..bfea0333423 100644 --- a/reactos/hal/halppc/generic/display.c +++ b/reactos/hal/halppc/generic/display.c @@ -19,7 +19,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/display.c + * FILE: hal/halppc/generic/display.c * PURPOSE: Blue screen display * PROGRAMMER: Eric Kohl * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/dma.c b/reactos/hal/halppc/generic/dma.c index 82bacbe598e..92e76bc8c03 100644 --- a/reactos/hal/halppc/generic/dma.c +++ b/reactos/hal/halppc/generic/dma.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/dma.c + * FILE: hal/halppc/generic/dma.c * PURPOSE: DMA functions * PROGRAMMERS: David Welch (welch@mcmail.com) * Filip Navara (navaraf@reactos.com) diff --git a/reactos/hal/halppc/generic/drive.c b/reactos/hal/halppc/generic/drive.c index fc489c9c8d6..011b663c7bb 100644 --- a/reactos/hal/halppc/generic/drive.c +++ b/reactos/hal/halppc/generic/drive.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/drive.c + * FILE: hal/halppc/generic/drive.c * PURPOSE: I/O HAL Routines for Disk Access * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/enum.c b/reactos/hal/halppc/generic/enum.c index 2a6ea7ccf58..c22ed75b5c3 100644 --- a/reactos/hal/halppc/generic/enum.c +++ b/reactos/hal/halppc/generic/enum.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/enum.c + * FILE: hal/halppc/generic/enum.c * PURPOSE: Motherboard device enumerator * PROGRAMMER: Casper S. Hornstrup (chorns@users.sourceforge.net) * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/fmutex.c b/reactos/hal/halppc/generic/fmutex.c index 134ca7a464a..20dd142d800 100644 --- a/reactos/hal/halppc/generic/fmutex.c +++ b/reactos/hal/halppc/generic/fmutex.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS HAL - * FILE: ntoskrnl/hal/x86/fmutex.c + * FILE: hal/halppc/generic/fmutex.c * PURPOSE: Deprecated HAL Fast Mutex * PROGRAMMERS: Alex Ionescu (alex@relsoft.net) */ diff --git a/reactos/hal/halppc/generic/font.c b/reactos/hal/halppc/generic/font.c index d42794317e2..8a8f4f6f2f8 100644 --- a/reactos/hal/halppc/generic/font.c +++ b/reactos/hal/halppc/generic/font.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: Xbox HAL - * FILE: hal/halx86/xbox/font.h + * FILE: hal/halppc/generic/font.c * PURPOSE: Font glyphs * PROGRAMMER: Ge van Geldorp (gvg@reactos.com) * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/halinit.c b/reactos/hal/halppc/generic/halinit.c index d7a81adc2cc..aa165f4ab0c 100644 --- a/reactos/hal/halppc/generic/halinit.c +++ b/reactos/hal/halppc/generic/halinit.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/halinit.c + * FILE: hal/halppc/generic/halinit.c * PURPOSE: HAL Entrypoint and Initialization * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/irql.c b/reactos/hal/halppc/generic/irql.c index 77c06f97d43..a37191066ec 100644 --- a/reactos/hal/halppc/generic/irql.c +++ b/reactos/hal/halppc/generic/irql.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/irql.c + * FILE: hal/halppc/generic/irql.c * PURPOSE: Implements IRQLs * PROGRAMMER: David Welch (welch@cwcom.net) */ diff --git a/reactos/hal/halppc/generic/isa.c b/reactos/hal/halppc/generic/isa.c index bba345e1839..cd5e56ca8a7 100644 --- a/reactos/hal/halppc/generic/isa.c +++ b/reactos/hal/halppc/generic/isa.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/isa.c + * FILE: hal/halppc/generic/isa.c * PURPOSE: Interfaces to the ISA bus * PROGRAMMER: David Welch (welch@mcmail.com) * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/misc.c b/reactos/hal/halppc/generic/misc.c index 3822eb53283..a2d5efc7ca0 100644 --- a/reactos/hal/halppc/generic/misc.c +++ b/reactos/hal/halppc/generic/misc.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/misc.c + * FILE: hal/halppc/generic/misc.c * PURPOSE: Miscellanous Routines * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * Eric Kohl diff --git a/reactos/hal/halppc/generic/pci.c b/reactos/hal/halppc/generic/pci.c index 39ecc7c8db6..3a04e3c2e1a 100644 --- a/reactos/hal/halppc/generic/pci.c +++ b/reactos/hal/halppc/generic/pci.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/pci.c + * FILE: hal/halppc/generic/pci.c * PURPOSE: PCI Bus Support (Configuration Space, Resource Allocation) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/portio.c b/reactos/hal/halppc/generic/portio.c index f5af0d166f8..7c544d24b62 100644 --- a/reactos/hal/halppc/generic/portio.c +++ b/reactos/hal/halppc/generic/portio.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/portio.c + * FILE: hal/halppc/generic/portio.c * PURPOSE: Port I/O functions * PROGRAMMER: Eric Kohl * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/processor.c b/reactos/hal/halppc/generic/processor.c index 1c1d0876faa..6bc2ffe6c7a 100644 --- a/reactos/hal/halppc/generic/processor.c +++ b/reactos/hal/halppc/generic/processor.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: hal/halx86/generic/processor.c + * FILE: hal/halppc/generic/processor.c * PURPOSE: Intel MultiProcessor specification support * PROGRAMMER: David Welch (welch@cwcom.net) * Casper S. Hornstrup (chorns@users.sourceforge.net) diff --git a/reactos/hal/halppc/generic/profil.c b/reactos/hal/halppc/generic/profil.c index d7f31afe4f5..e713e36b24c 100644 --- a/reactos/hal/halppc/generic/profil.c +++ b/reactos/hal/halppc/generic/profil.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/profil.c + * FILE: hal/halppc/generic/profil.c * PURPOSE: System Profiling * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/reboot.c b/reactos/hal/halppc/generic/reboot.c index cd3a8f37c77..7e5b825ac00 100644 --- a/reactos/hal/halppc/generic/reboot.c +++ b/reactos/hal/halppc/generic/reboot.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/reboot.c + * FILE: hal/halppc/generic/reboot.c * PURPOSE: Reboot functions. * PROGRAMMER: Eric Kohl * UPDATE HISTORY: diff --git a/reactos/hal/halppc/generic/spinlock.c b/reactos/hal/halppc/generic/spinlock.c index 987762c96b5..4016f535296 100644 --- a/reactos/hal/halppc/generic/spinlock.c +++ b/reactos/hal/halppc/generic/spinlock.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/up/spinlock.c + * FILE: hal/halppc/generic/spinlock.c * PURPOSE: Spinlock and Queued Spinlock Support * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/sysinfo.c b/reactos/hal/halppc/generic/sysinfo.c index 8e1e2ad6718..7657db23bd8 100644 --- a/reactos/hal/halppc/generic/sysinfo.c +++ b/reactos/hal/halppc/generic/sysinfo.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HA: * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/sysinfo.c + * FILE: hal/halppc/generic/sysinfo.c * PURPOSE: HAL Information Routines * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/generic/timer.c b/reactos/hal/halppc/generic/timer.c index a3e23fc83dd..37d0aca1914 100644 --- a/reactos/hal/halppc/generic/timer.c +++ b/reactos/hal/halppc/generic/timer.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/timer.c + * FILE: hal/halppc/generic/timer.c * PURPOSE: HAL Timer Routines * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halppc/include/hal.h b/reactos/hal/halppc/include/hal.h index 7ffb0dfcb8c..bc91fc890fa 100644 --- a/reactos/hal/halppc/include/hal.h +++ b/reactos/hal/halppc/include/hal.h @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS Hardware Abstraction Layer - * FILE: hal/halx86/include/hal.h + * FILE: hal/halppc/include/hal.h * PURPOSE: HAL Header * PROGRAMMER: Alex Ionescu (alex@relsoft.net) */ diff --git a/reactos/hal/halppc/up/halinit_up.c b/reactos/hal/halppc/up/halinit_up.c index 697f95466b1..c236eb99e0d 100644 --- a/reactos/hal/halppc/up/halinit_up.c +++ b/reactos/hal/halppc/up/halinit_up.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/halinit.c + * FILE: hal/halppc/up/halinit_up.c * PURPOSE: Initialize the x86 hal * PROGRAMMER: David Welch (welch@cwcom.net) * UPDATE HISTORY: diff --git a/reactos/hal/halx86/acpi/busemul.c b/reactos/hal/halx86/acpi/busemul.c index 861f1d36d08..71b2aef3d85 100644 --- a/reactos/hal/halx86/acpi/busemul.c +++ b/reactos/hal/halx86/acpi/busemul.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/acpi/busemul.c + * FILE: hal/halx86/acpi/busemul.c * PURPOSE: ACPI HAL Bus Handler Emulation Code * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/acpi/halacpi.c b/reactos/hal/halx86/acpi/halacpi.c index 54793421dcf..8b9f204717a 100644 --- a/reactos/hal/halx86/acpi/halacpi.c +++ b/reactos/hal/halx86/acpi/halacpi.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/acpi/halacpi.c + * FILE: hal/halx86/acpi/halacpi.c * PURPOSE: HAL ACPI Code * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/acpi/halpnpdd.c b/reactos/hal/halx86/acpi/halpnpdd.c index 69cd896c9c5..cc30284d513 100644 --- a/reactos/hal/halx86/acpi/halpnpdd.c +++ b/reactos/hal/halx86/acpi/halpnpdd.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/acpi/halpnpdd.c + * FILE: hal/halx86/acpi/halpnpdd.c * PURPOSE: HAL Plug and Play Device Driver * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/amd64/mps.S b/reactos/hal/halx86/amd64/mps.S index 7a3b8c55aa6..6d1b33c46db 100644 --- a/reactos/hal/halx86/amd64/mps.S +++ b/reactos/hal/halx86/amd64/mps.S @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/amd64/generic/mps.S + * FILE: hal/halx86/amd64/mps.S * PURPOSE: Intel MultiProcessor specification support * PROGRAMMER: Casper S. Hornstrup (chorns@users.sourceforge.net) */ diff --git a/reactos/hal/halx86/amd64/systimer.S b/reactos/hal/halx86/amd64/systimer.S index 11323eecd9b..f0adaef5932 100644 --- a/reactos/hal/halx86/amd64/systimer.S +++ b/reactos/hal/halx86/amd64/systimer.S @@ -1,5 +1,5 @@ /* - * FILE: hal/halx86/generic/timer.S + * FILE: hal/halx86/amd64/systimer.S * COPYRIGHT: See COPYING in the top level directory * PURPOSE: System Timer Interrupt and Management * PROGRAMMER: Alex Ionescu (alex@relsoft.net) diff --git a/reactos/hal/halx86/amd64/x86bios.c b/reactos/hal/halx86/amd64/x86bios.c index a814873cbe0..7577be8c1ce 100644 --- a/reactos/hal/halx86/amd64/x86bios.c +++ b/reactos/hal/halx86/amd64/x86bios.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL, See COPYING in the top level directory - * FILE: hal/halx86/generic/amd64/x86bios.c + * FILE: hal/halx86/amd64/x86bios.c * PURPOSE: * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) */ diff --git a/reactos/hal/halx86/apic/apic.c b/reactos/hal/halx86/apic/apic.c index 986843408a1..a9d7f38813a 100644 --- a/reactos/hal/halx86/apic/apic.c +++ b/reactos/hal/halx86/apic/apic.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GNU GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/apic.c + * FILE: hal/halx86/apic/apic.c * PURPOSE: HAL APIC Management and Control Code * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) * REFERENCES: http://www.joseflores.com/docs/ExploringIrql.html diff --git a/reactos/hal/halx86/apic/halinit_apic.c b/reactos/hal/halx86/apic/halinit_apic.c index 2e9bb7fa492..0ac23c5c2f5 100644 --- a/reactos/hal/halx86/apic/halinit_apic.c +++ b/reactos/hal/halx86/apic/halinit_apic.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/halinit.c + * FILE: hal/halx86/apic/halinit_apic.c * PURPOSE: Initialize the x86 hal * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) */ diff --git a/reactos/hal/halx86/apic/rtctimer.c b/reactos/hal/halx86/apic/rtctimer.c index 452c17be933..d91d5ea167b 100644 --- a/reactos/hal/halx86/apic/rtctimer.c +++ b/reactos/hal/halx86/apic/rtctimer.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GNU GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/apic.c + * FILE: hal/halx86/apic/rtctimer.c * PURPOSE: HAL APIC Management and Control Code * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) * REFERENCES: diff --git a/reactos/hal/halx86/apic/tsc.c b/reactos/hal/halx86/apic/tsc.c index 0f0d74b883b..cebea261210 100644 --- a/reactos/hal/halx86/apic/tsc.c +++ b/reactos/hal/halx86/apic/tsc.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halamd64/generic/tsc.c + * FILE: hal/halx86/apic/tsc.c * PURPOSE: HAL Routines for TSC handling * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) */ diff --git a/reactos/hal/halx86/generic/bios.c b/reactos/hal/halx86/generic/bios.c index b455fef22c3..388722210a7 100644 --- a/reactos/hal/halx86/generic/bios.c +++ b/reactos/hal/halx86/generic/bios.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS Hardware Abstraction Layer (HAL) * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: halx86/generic/bios.c + * FILE: hal/halx86/generic/bios.c * PURPOSE: BIOS Access Routines * PROGRAMMERS: ReactOS Portable Systems Group * Alex Ionescu (alex.ionescu@reactos.org) diff --git a/reactos/hal/halx86/generic/dma.c b/reactos/hal/halx86/generic/dma.c index 3f6c312a5e4..af3d82351f7 100644 --- a/reactos/hal/halx86/generic/dma.c +++ b/reactos/hal/halx86/generic/dma.c @@ -2,7 +2,7 @@ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/dma.c + * FILE: hal/halx86/generic/dma.c * PURPOSE: DMA functions * PROGRAMMERS: David Welch (welch@mcmail.com) * Filip Navara (navaraf@reactos.com) diff --git a/reactos/hal/halx86/generic/misc.c b/reactos/hal/halx86/generic/misc.c index 53783927222..b1ca888802b 100644 --- a/reactos/hal/halx86/generic/misc.c +++ b/reactos/hal/halx86/generic/misc.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS Hardware Abstraction Layer (HAL) * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: halx86/generic/misc.c + * FILE: hal/halx86/generic/misc.c * PURPOSE: NMI, I/O Mapping and x86 Subs * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/generic/spinlock.c b/reactos/hal/halx86/generic/spinlock.c index 01512dc9a85..2a2082ca131 100644 --- a/reactos/hal/halx86/generic/spinlock.c +++ b/reactos/hal/halx86/generic/spinlock.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/up/spinlock.c + * FILE: hal/halx86/generic/spinlock.c * PURPOSE: Spinlock and Queued Spinlock Support * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halx86/generic/systimer.S b/reactos/hal/halx86/generic/systimer.S index d3caa478fee..57e29f3c21e 100644 --- a/reactos/hal/halx86/generic/systimer.S +++ b/reactos/hal/halx86/generic/systimer.S @@ -1,5 +1,5 @@ /* - * FILE: hal/halx86/generic/timer.S + * FILE: hal/halx86/generic/systimer.S * COPYRIGHT: See COPYING in the top level directory * PURPOSE: System Timer Interrupt and Management * PROGRAMMER: Alex Ionescu (alex@relsoft.net) diff --git a/reactos/hal/halx86/generic/trap.S b/reactos/hal/halx86/generic/trap.S index 89da49af68d..af28cfecd9f 100644 --- a/reactos/hal/halx86/generic/trap.S +++ b/reactos/hal/halx86/generic/trap.S @@ -1,5 +1,5 @@ /* - * FILE: ntoskrnl/ke/i386/trap.S + * FILE: hal/halx86/generic/trap.S * COPYRIGHT: See COPYING in the top level directory * PURPOSE: System Traps, Entrypoints and Exitpoints * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) diff --git a/reactos/hal/halx86/legacy/bus/bushndlr.c b/reactos/hal/halx86/legacy/bus/bushndlr.c index 31ea9d592dc..5ebe24b0d91 100644 --- a/reactos/hal/halx86/legacy/bus/bushndlr.c +++ b/reactos/hal/halx86/legacy/bus/bushndlr.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus/bushndlr.c + * FILE: hal/halx86/legacy/bus/bushndlr.c * PURPOSE: Generic HAL Bus Handler Support * PROGRAMMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org) */ diff --git a/reactos/hal/halx86/legacy/bus/cmosbus.c b/reactos/hal/halx86/legacy/bus/cmosbus.c index 24a36b01dea..88e7981ac51 100644 --- a/reactos/hal/halx86/legacy/bus/cmosbus.c +++ b/reactos/hal/halx86/legacy/bus/cmosbus.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus/sysbus.c + * FILE: hal/halx86/legacy/bus/cmosbus.c * PURPOSE: * PROGRAMMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org) */ diff --git a/reactos/hal/halx86/legacy/bus/isabus.c b/reactos/hal/halx86/legacy/bus/isabus.c index 4d716a1060c..dac5af8c8c7 100644 --- a/reactos/hal/halx86/legacy/bus/isabus.c +++ b/reactos/hal/halx86/legacy/bus/isabus.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus/isabus.c + * FILE: hal/halx86/legacy/bus/isabus.c * PURPOSE: * PROGRAMMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org) */ diff --git a/reactos/hal/halx86/legacy/bus/pcibus.c b/reactos/hal/halx86/legacy/bus/pcibus.c index f45d66b0bae..4f363ad3792 100644 --- a/reactos/hal/halx86/legacy/bus/pcibus.c +++ b/reactos/hal/halx86/legacy/bus/pcibus.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus/pcibus.c + * FILE: hal/halx86/legacy/bus/pcibus.c * PURPOSE: PCI Bus Support (Configuration Space, Resource Allocation) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */ diff --git a/reactos/hal/halx86/legacy/bus/sysbus.c b/reactos/hal/halx86/legacy/bus/sysbus.c index 6a369a74ae6..fccb8233982 100644 --- a/reactos/hal/halx86/legacy/bus/sysbus.c +++ b/reactos/hal/halx86/legacy/bus/sysbus.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: GPL - See COPYING in the top level directory - * FILE: hal/halx86/generic/bus/sysbus.c + * FILE: hal/halx86/legacy/bus/sysbus.c * PURPOSE: * PROGRAMMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org) */ diff --git a/reactos/hal/halx86/legacy/bussupp.c b/reactos/hal/halx86/legacy/bussupp.c index 37a48c3e8e9..595bdeff539 100644 --- a/reactos/hal/halx86/legacy/bussupp.c +++ b/reactos/hal/halx86/legacy/bussupp.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/legacy/bussupp.c + * FILE: hal/halx86/legacy/bussupp.c * PURPOSE: HAL Legacy Bus Support Code * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/legacy/halpcat.c b/reactos/hal/halx86/legacy/halpcat.c index 8fe7c9bc5a2..b8d7fa657e9 100644 --- a/reactos/hal/halx86/legacy/halpcat.c +++ b/reactos/hal/halx86/legacy/halpcat.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/legacy/halpcat.c + * FILE: hal/halx86/legacy/halpcat.c * PURPOSE: HAL Legacy Support Code * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/legacy/halpnpdd.c b/reactos/hal/halx86/legacy/halpnpdd.c index 97eade152d7..4680767d6f8 100644 --- a/reactos/hal/halx86/legacy/halpnpdd.c +++ b/reactos/hal/halx86/legacy/halpnpdd.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/legacy/halpnpdd.c + * FILE: hal/halx86/legacy/halpnpdd.c * PURPOSE: HAL Plug and Play Device Driver * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/up/halinit_mini.c b/reactos/hal/halx86/up/halinit_mini.c index 201bf1e62b1..ae0f6cde309 100644 --- a/reactos/hal/halx86/up/halinit_mini.c +++ b/reactos/hal/halx86/up/halinit_mini.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/halinit.c + * FILE: hal/halx86/up/halinit_mini.c * PURPOSE: Initialize the x86 hal * PROGRAMMER: David Welch (welch@cwcom.net) * UPDATE HISTORY: diff --git a/reactos/hal/halx86/up/halinit_up.c b/reactos/hal/halx86/up/halinit_up.c index baa60d38b6d..db65cd40d65 100644 --- a/reactos/hal/halx86/up/halinit_up.c +++ b/reactos/hal/halx86/up/halinit_up.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/halinit.c + * FILE: hal/halx86/up/halinit_up.c * PURPOSE: Initialize the x86 hal * PROGRAMMER: David Welch (welch@cwcom.net) * UPDATE HISTORY: diff --git a/reactos/hal/halx86/up/pic.c b/reactos/hal/halx86/up/pic.c index 17bc80ea010..4857c53cb93 100644 --- a/reactos/hal/halx86/up/pic.c +++ b/reactos/hal/halx86/up/pic.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS HAL * LICENSE: BSD - See COPYING.ARM in the top level directory - * FILE: hal/halx86/generic/pic.c + * FILE: hal/halx86/up/pic.c * PURPOSE: HAL PIC Management and Control Code * PROGRAMMERS: ReactOS Portable Systems Group */ diff --git a/reactos/hal/halx86/xbox/halinit_xbox.c b/reactos/hal/halx86/xbox/halinit_xbox.c index 5eb2ac48cc7..a950c988460 100644 --- a/reactos/hal/halx86/xbox/halinit_xbox.c +++ b/reactos/hal/halx86/xbox/halinit_xbox.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * FILE: ntoskrnl/hal/x86/halinit.c + * FILE: hal/halx86/xbox/halinit_xbox.c * PURPOSE: Initialize the x86 hal * PROGRAMMER: David Welch (welch@cwcom.net) * UPDATE HISTORY: