[SWDEV-493207] Added amd_hsmp version to version command

Signed-off-by: Pham, Gabriel <Gabriel.Pham@amd.com>
This commit is contained in:
Pham, Gabriel
2025-01-30 04:12:08 -05:00
zatwierdzone przez GitHub
rodzic 9fbdaa66ab
commit 0326c52ce9
3 zmienionych plików z 29 dodań i 26 usunięć
+3 -3
Wyświetl plik
@@ -604,13 +604,13 @@ class AMDSMIParser(argparse.ArgumentParser):
# Add Universal Arguments
self._add_command_modifiers(version_parser)
# help info; CPU version code will be added back in once amd_hsmp code has been completed
# help info
gpu_version_help = "Display the current amdgpu driver version"
# cpu_version_help = "Display the current amd_hsmp driver version"
cpu_version_help = "Display the current amd_hsmp driver version"
# Add GPU and CPU version Arguments
version_parser.add_argument('-g', '--gpu_version', action='store_true', required=False, help=gpu_version_help)
# version_parser.add_argument('-c', '--cpu_version', action='store_true', required=False, help=cpu_version_help)
version_parser.add_argument('-c', '--cpu_version', action='store_true', required=False, help=cpu_version_help)
def _add_list_parser(self, subparsers: argparse._SubParsersAction, func):