1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

source/cpu: Fix compile error for non-amd64 arches

Signed-off-by: Jan Schintag <jan.schintag@de.ibm.com>
This commit is contained in:
Jan Schintag 2021-11-25 09:54:21 +01:00
parent 0b4050af7f
commit 476756ab0c

View file

@ -19,6 +19,6 @@ limitations under the License.
package cpu package cpu
func discoverSSTBF() (bool, error) { func discoverSST() map[string]string {
return false, nil return nil
} }