Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 212242
b: refs/heads/master
c: 4db77ff
h: refs/heads/master
v: v3
  • Loading branch information
Konrad Rzeszutek Wilk authored and H. Peter Anvin committed Aug 26, 2010
1 parent b99c759 commit 36e8085
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 22e6daf41ba28ddc06295e42859b266f737b3e99
refs/heads/master: 4db77ff3237a88ea74f691dd776e92b2f86a8f3f
4 changes: 3 additions & 1 deletion trunk/drivers/pci/dmar.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include <linux/tboot.h>
#include <linux/dmi.h>
#include <linux/slab.h>
#include <asm/iommu_table.h>

#define PREFIX "DMAR: "

Expand Down Expand Up @@ -724,7 +725,7 @@ int __init detect_intel_iommu(void)
early_acpi_os_unmap_memory(dmar_tbl, dmar_tbl_size);
dmar_tbl = NULL;

return (ret ? 1 : -ENODEV);
return ret ? 1 : -ENODEV;
}


Expand Down Expand Up @@ -1457,3 +1458,4 @@ int __init dmar_ir_support(void)
return 0;
return dmar->flags & 0x1;
}
IOMMU_INIT_POST(detect_intel_iommu);

0 comments on commit 36e8085

Please sign in to comment.