Merge pull request #197 from jeanthom/int-conv-err

Use uint32_t for misc_dev_list (fixes #196)
This commit is contained in:
Gwenhael Goavec-Merou 2022-03-19 18:56:46 +01:00 committed by GitHub
commit 881982102b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ typedef struct {
int irlength;
} misc_device;
static std::map <int, misc_device> misc_dev_list = {
static std::map <uint32_t, misc_device> misc_dev_list = {
{0x4ba00477, {"ARM cortex A9", 4}},
{0x5ba00477, {"ARM cortex A53", 4}},
{0xfffffffe, {"ZynqMP dummy device", 12}},