From 355b62b13a2a8ce8db007dc5193472c0d6cf57ab Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Sun, 5 Oct 2025 14:20:10 -0700 Subject: [PATCH] [pci] fix a warning that only shows up on gcc 7.5.0 --- dev/bus/pci/backend/ecam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/bus/pci/backend/ecam.h b/dev/bus/pci/backend/ecam.h index 1786370b..039cd46d 100644 --- a/dev/bus/pci/backend/ecam.h +++ b/dev/bus/pci/backend/ecam.h @@ -32,7 +32,7 @@ private: status_t initialize(); paddr_t base_; - __UNUSED uint16_t segment_; + uint16_t segment_; uint16_t start_bus_; uint16_t end_bus_;