[SWDEV-499995] ESMI Build/Compiler warnings messages (#105)
* [SWDEV-499995] ESMI Build/Compiler warnings messages Signed-off-by: Deepak Mewar <deepak.mewar@amd.com>
Este cometimento está contido em:
cometido por
GitHub
ascendente
1b9841450a
cometimento
2c591ffcc1
@@ -251,8 +251,8 @@ typedef void *amdsmi_cpusocket_handle;
|
||||
* @cond @tag{cpu_bm} @endcond
|
||||
*/
|
||||
typedef struct {
|
||||
uint8_t major; //!< Major version number
|
||||
uint8_t minor; //!< Minor version number
|
||||
uint32_t major; //!< Major version number
|
||||
uint32_t minor; //!< Minor version number
|
||||
} amdsmi_hsmp_driver_version_t;
|
||||
|
||||
#endif
|
||||
|
||||
@@ -227,8 +227,8 @@ class struct_amdsmi_hsmp_driver_version_t(Structure):
|
||||
|
||||
struct_amdsmi_hsmp_driver_version_t._pack_ = 1 # source:False
|
||||
struct_amdsmi_hsmp_driver_version_t._fields_ = [
|
||||
('major', ctypes.c_ubyte),
|
||||
('minor', ctypes.c_ubyte),
|
||||
('major', ctypes.c_uint32),
|
||||
('minor', ctypes.c_uint32),
|
||||
]
|
||||
|
||||
amdsmi_hsmp_driver_version_t = struct_amdsmi_hsmp_driver_version_t
|
||||
|
||||
@@ -38,11 +38,11 @@
|
||||
namespace amd {
|
||||
namespace smi {
|
||||
|
||||
void closedir(DIR* /*ptr*/) {}
|
||||
|
||||
std::string AMDSmiDrm::find_file_in_folder(const std::string& folder,
|
||||
const std::string& regex) {
|
||||
std::string file_name;
|
||||
// TODO: The closedir function has some non-standard attributes that are being ignored here
|
||||
// which is causing a warning to be thrown
|
||||
using dir_ptr = std::unique_ptr<DIR, decltype(&closedir)>;
|
||||
|
||||
struct dirent *dir = nullptr;
|
||||
|
||||
Criar uma nova questão referindo esta
Bloquear um utilizador