Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/digitalocean/go-smbios v0.0.0-20180907143718-390a4f403a8e
github.com/fearful-symmetry/gomsr v0.0.1
github.com/google/go-tpm v0.9.1
github.com/intel-go/cpuid v0.0.0-20200819041909-2aa72927c3e2
github.com/intel/cpuid v0.0.0-20241219215823-96de68d22bf5
github.com/klauspost/cpuid/v2 v2.0.9
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-tpm v0.9.1 h1:0pGc4X//bAlmZzMKf8iz6IsDo1nYTbYJ6FZN/rg4zdM=
github.com/google/go-tpm v0.9.1/go.mod h1:h9jEsEECg7gtLis0upRBQU+GhYVH6jMjrFxI8u6bVUY=
github.com/intel-go/cpuid v0.0.0-20200819041909-2aa72927c3e2 h1:h+RKaNPjka7LRJGoeub/IQBdXSoEaJjfADkBq02hvjw=
github.com/intel-go/cpuid v0.0.0-20200819041909-2aa72927c3e2/go.mod h1:RmeVYf9XrPRbRc3XIx0gLYA8qOFvNoPOfaEZduRlEp4=
github.com/intel/cpuid v0.0.0-20241219215823-96de68d22bf5 h1:hVDholZuFGC/o1qUJzo2e1g7SfY3LdVdtD1v6TPusIU=
github.com/intel/cpuid v0.0.0-20241219215823-96de68d22bf5/go.mod h1:eIfLTRskFaji3LVfdFTMclGUqeVixmCt3KidZg+WDTk=
github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4=
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
Expand Down
2 changes: 1 addition & 1 deletion pkg/hwapi/cpuid_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Package hwapi provides access to low level hardware
package hwapi

import "github.com/intel-go/cpuid"
import "github.com/intel/cpuid"

func cpuidLow(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32) // implemented in cpuidlow_amd64.s

Expand Down
2 changes: 1 addition & 1 deletion pkg/hwapi/msr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/fearful-symmetry/gomsr"
"github.com/intel-go/cpuid"
"github.com/intel/cpuid"
)

const (
Expand Down