Skip to content

Commit

Permalink
fix incorrect bitfield size
Browse files Browse the repository at this point in the history
  • Loading branch information
ved-rivos committed Dec 27, 2023
1 parent 1ab2219 commit da2b82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iommu_ref_model/libiommu/include/iommu_data_structures.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ typedef union {
typedef union {
struct {
uint64_t PPN:44;
uint64_t reserved:15;
uint64_t reserved:16;
uint64_t MODE:4;
};
uint64_t raw;
Expand Down

0 comments on commit da2b82c

Please sign in to comment.