Change AMDSmiDevice to AMDSmiProcessor

grep -rli 'AMDSmiDevice' * | xargs -i@ sed -i 's/AMDSmiDevice/AMDSmiProcessor/g' @

Change-Id: Ib71e11d7122699cc62df3c4e9711ce3fc51e6fdf
This commit is contained in:
Suma Hegde
2023-02-25 05:24:03 -05:00
committed by Naveen Krishna Chatradhi
parent 6cce103fba
commit c4aa7d2c03
6 changed files with 22 additions and 22 deletions
+6 -6
View File
@@ -41,18 +41,18 @@
*
*/
#ifndef AMD_SMI_INCLUDE_AMD_SMI_DEVICE_H_
#define AMD_SMI_INCLUDE_AMD_SMI_DEVICE_H_
#ifndef AMD_SMI_INCLUDE_AMD_SMI_PROCESSOR_H_
#define AMD_SMI_INCLUDE_AMD_SMI_PROCESSOR_H_
#include "amd_smi/amdsmi.h"
namespace amd {
namespace smi {
class AMDSmiDevice {
class AMDSmiProcessor {
public:
explicit AMDSmiDevice(device_type_t device) : device_type_(device) {}
virtual ~AMDSmiDevice() {}
explicit AMDSmiProcessor(device_type_t device) : device_type_(device) {}
virtual ~AMDSmiProcessor() {}
device_type_t get_device_type() const { return device_type_;}
private:
device_type_t device_type_;
@@ -62,4 +62,4 @@ class AMDSmiDevice {
} // namespace smi
} // namespace amd
#endif // AMD_SMI_INCLUDE_AMD_SMI_DEVICE_H_
#endif // AMD_SMI_INCLUDE_AMD_SMI_PROCESSOR_H_