From db6d5bee335ec2d5024ee2658f46cd75ee84918d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 13 Sep 2026 22:42:38 +0200 Subject: [PATCH] [BOOTDATA][PCIX][SDK] Fix minor "typos" (#9539) - "PCI BIOS" instead of "ACPI BIOS". - "PIR$" -> "$PIR". --- boot/bootdata/hivesys.inf | 4 ++-- drivers/bus/pcix/enum.c | 4 ++-- drivers/bus/pcix/init.c | 2 +- drivers/bus/pcix/utils.c | 2 +- sdk/include/reactos/drivers/pci/pci.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/boot/bootdata/hivesys.inf b/boot/bootdata/hivesys.inf index 3043d4c3261..08dad42667c 100644 --- a/boot/bootdata/hivesys.inf +++ b/boot/bootdata/hivesys.inf @@ -1422,8 +1422,8 @@ HKLM,"SYSTEM\CurrentControlSet\Control\PnP\Pci\CardList","Ali",0x00030003,\ 01,00,00,00,b9,10,21,15,00,00,00,00,00,00,00,00 ; PCI IRQ routing miniport support (legacy, pre-ACPI machines). -; The IrqMiniports table maps a south-bridge PCI interrupt router -; this $PIR table is needed for PCI IRQ Routing without ACPI. +; The IrqMiniports table maps a south-bridge PCI interrupt router. +; This $PIR table is needed for PCI IRQ Routing without ACPI. HKLM,"SYSTEM\CurrentControlSet\Control\PnP\PciIrqRouting","Options",0x00010001,0x0000000F HKLM,"SYSTEM\CurrentControlSet\Control\PnP\PciIrqRouting\IrqMiniports\00001078","Name",0x00000002,"Cyrix 5520 Rev 0" diff --git a/drivers/bus/pcix/enum.c b/drivers/bus/pcix/enum.c index b32b2ba9a13..e3fa5844421 100644 --- a/drivers/bus/pcix/enum.c +++ b/drivers/bus/pcix/enum.c @@ -295,7 +295,7 @@ PciUpdateHardware(IN PPCI_PDO_EXTENSION PdoExtension, } else { - /* Just to the update inline */ + /* Just do the update inline */ PcipUpdateHardware(PdoExtension, PciData); } } @@ -1491,7 +1491,7 @@ PcipGetFunctionLimits(IN PPCI_CONFIGURATOR_CONTEXT Context) } else { - /* Otherwise, it's safe to do this in-line at low IRQL */ + /* Otherwise, it's safe to do this inline at low IRQL */ PciWriteLimitsAndRestoreCurrent(PdoExtension, Context); } diff --git a/drivers/bus/pcix/init.c b/drivers/bus/pcix/init.c index 34c69f7e96c..6a16213d469 100644 --- a/drivers/bus/pcix/init.c +++ b/drivers/bus/pcix/init.c @@ -134,7 +134,7 @@ PciAcpiFindRsdt(OUT PACPI_BIOS_MULTI_NODE *AcpiMultiNode) &NumberOfBytes); if (NT_SUCCESS(Status)) { - /* Check if this is the PCI BIOS subkey */ + /* Check if this is the ACPI BIOS subkey */ if (!wcsncmp((PWCHAR)ValueInfo->Data, L"ACPI BIOS", ValueInfo->DataLength)) diff --git a/drivers/bus/pcix/utils.c b/drivers/bus/pcix/utils.c index 91f87a696b3..235be99dda4 100644 --- a/drivers/bus/pcix/utils.c +++ b/drivers/bus/pcix/utils.c @@ -1354,7 +1354,7 @@ PciDetermineSlotNumber(IN PPCI_PDO_EXTENSION PdoExtension, { /* Read every slot information entry */ SlotInfo = &PciIrqRoutingTable->Slot[0]; - DPRINT1("PIR$ %p is %lx bytes, slot 0 is at: %p\n", + DPRINT1("$PIR %p is %lx bytes, slot 0 is at: %p\n", PciIrqRoutingTable, PciIrqRoutingTable->TableSize, SlotInfo); while (SlotInfo < (PSLOT_INFO)((ULONG_PTR)PciIrqRoutingTable + PciIrqRoutingTable->TableSize)) diff --git a/sdk/include/reactos/drivers/pci/pci.h b/sdk/include/reactos/drivers/pci/pci.h index 79c5b9826ed..cf34622cd48 100644 --- a/sdk/include/reactos/drivers/pci/pci.h +++ b/sdk/include/reactos/drivers/pci/pci.h @@ -65,7 +65,7 @@ #define PCI_ENABLE_BRIDGE_VGA_16BIT 0x0010 // -// PCI IRQ Routing Table in BIOS/Registry (Signature: PIR$) +// PCI IRQ Routing Table in BIOS/Registry (Signature: $PIR) // #include typedef struct _PIN_INFO