Conflicts: info/v1/machine.go Signed-off-by: Maciej "Iwan" Iwanowski <maciej.iwanowski@intel.com>
10 lines
233 B
Go
10 lines
233 B
Go
// +build !libipmctl
|
|
|
|
package machine
|
|
|
|
// GetNVMAvgPowerBudget retrieves configured power budget for NVM devices.
|
|
// When libipmct is not available zero is returned.
|
|
func GetNVMAvgPowerBudget() (uint, error) {
|
|
return uint(0), nil
|
|
}
|