Skip to content

Commit

Permalink
Use uint32_t for misc_dev_list (fixes #196)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanthom committed Mar 19, 2022
1 parent bbd7558 commit 80e917f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/part.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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}},
Expand Down

0 comments on commit 80e917f

Please sign in to comment.