Change device_handle to processor_handle

grep -rli 'device_handle' * | xargs -i@ sed -i
's/device_handle/processor_handle/g' @

Change-Id: Ifc8b7fa3b5488ce1fa8d8cf9eb3981a09450de11
This commit is contained in:
Suma Hegde
2023-02-25 05:28:40 -05:00
committed by Naveen Krishna Chatradhi
orang tua 3963036a05
melakukan 3f9e4d95d4
44 mengubah file dengan 1381 tambahan dan 1377 penghapusan
File diff ditekan karena terlalu besar Load Diff
+2 -2
Melihat File
@@ -69,11 +69,11 @@ class AMDSmiSystem {
amdsmi_status_t handle_to_socket(amdsmi_socket_handle socket_handle,
AMDSmiSocket** socket);
amdsmi_status_t handle_to_device(amdsmi_processor_handle device_handle,
amdsmi_status_t handle_to_device(amdsmi_processor_handle processor_handle,
AMDSmiProcessor** device);
amdsmi_status_t gpu_index_to_handle(uint32_t gpu_index,
amdsmi_processor_handle* device_handle);
amdsmi_processor_handle* processor_handle);
private:
AMDSmiSystem() : init_flag_(AMDSMI_INIT_AMD_GPUS) {}