Skip to content

Commit

Permalink
rm get_extended_topology_info_v2() AMD indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
semiviral committed Aug 2, 2022
1 parent 5bbe02a commit 43ebb6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ impl CpuId {

/// Information about topology (LEAF=0x0B).
///
/// Intel SDM suggests software should check support for leaf 0x1F ([get_extended_topology_info_v2()`]), and
/// Intel SDM suggests software should check support for leaf 0x1F ([`get_extended_topology_info_v2()`]), and
/// if supported, enumerate that leaf instead.
///
/// # Platforms
Expand All @@ -573,7 +573,7 @@ impl CpuId {
/// Extended information about topology (LEAF=0x1F).
///
/// # Platforms
/// AMD ✅Intel
/// AMD ✅ Intel
pub fn get_extended_topology_info_v2(&self) -> Option<ExtendedTopologyIter> {
if self.leaf_is_supported(EAX_EXTENDED_TOPOLOGY_INFO_V2) {
Some(ExtendedTopologyIter {
Expand Down

0 comments on commit 43ebb6e

Please sign in to comment.