Skip to content

Commit

Permalink
Merge branch 'iommu/fixes' into core
Browse files Browse the repository at this point in the history
  • Loading branch information
joergroedel committed Sep 9, 2022
2 parents 189cb8f + 91c98fe commit 7f34891
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 107 deletions.
3 changes: 2 additions & 1 deletion drivers/iommu/amd/iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,8 @@ static void build_completion_wait(struct iommu_cmd *cmd,
memset(cmd, 0, sizeof(*cmd));
cmd->data[0] = lower_32_bits(paddr) | CMD_COMPL_WAIT_STORE_MASK;
cmd->data[1] = upper_32_bits(paddr);
cmd->data[2] = data;
cmd->data[2] = lower_32_bits(data);
cmd->data[3] = upper_32_bits(data);
CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
}

Expand Down
Loading

0 comments on commit 7f34891

Please sign in to comment.