util: Rename KernelVersion to GetKernelVersion

Renames KernelVersion to GetKernelVersion for
more readibility.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna
2020-06-22 12:28:47 +05:30
committed by mergify[bot]
parent 12c3be9974
commit 567b2ab280
4 changed files with 6 additions and 6 deletions

View File

@ -141,9 +141,9 @@ func ValidateDriverName(driverName string) error {
return err
}
// KernelVersion returns the version of the running Unix (like) system from the
// GetKernelVersion returns the version of the running Unix (like) system from the
// 'utsname' structs 'release' component.
func KernelVersion() (string, error) {
func GetKernelVersion() (string, error) {
utsname := unix.Utsname{}
err := unix.Uname(&utsname)
if err != nil {