intel: fix dead code — replace ASLS tuple literal with debug message

Was: let _ = (ASLS_PCI_OFFSET, OPREGION_SIG, OPREGION_VBT_OFFSET);
Now: debug! with note that OpRegion VBT lookup is not yet implemented

Removes dead code while documenting the feature gap for future work.
This commit is contained in:
2026-06-02 05:36:23 +03:00
parent 442d450ae7
commit a839be7d6c
@@ -1395,8 +1395,8 @@ fn discover_vbt(mmio: &MmioRegion) -> Option<vbt::VbtInfo> {
}
}
let _ = (ASLS_PCI_OFFSET, OPREGION_SIG, OPREGION_VBT_OFFSET);
debug!("redox-drm-intel: no VBT found in MMIO, using port heuristic");
// ASLS/OpRegion VBT lookup attempted (offsets 0x68 for ASLS, 0x400 for VBT in OpRegion)
debug!("redox-drm-intel: VBT MMIO scan complete, OpRegion/ASLS VBT lookup not yet implemented");
None
}