projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5e8619
)
iommu/arm-smmu-v3: Remove boolean bitfield for 'ats_enabled' flag
author
Will Deacon
<will@kernel.org>
Tue, 20 Aug 2019 16:32:18 +0000
(17:32 +0100)
committer
Will Deacon
<will@kernel.org>
Wed, 21 Aug 2019 16:58:40 +0000
(17:58 +0100)
There's really no need for this to be a bitfield, particularly as we
don't have bitwise addressing on arm64.
Signed-off-by: Will Deacon <will@kernel.org>
drivers/iommu/arm-smmu-v3.c
patch
|
blob
|
history
diff --git
a/drivers/iommu/arm-smmu-v3.c
b/drivers/iommu/arm-smmu-v3.c
index 7a368059cd7d90a1f6e20f57dd65122f8d5f6e6f..2be11a11bb8bf26d48a24a7464ff3538552d13fa 100644
(file)
--- a/
drivers/iommu/arm-smmu-v3.c
+++ b/
drivers/iommu/arm-smmu-v3.c
@@
-637,7
+637,7
@@
struct arm_smmu_master {
struct list_head domain_head;
u32 *sids;
unsigned int num_sids;
- bool ats_enabled
:1
;
+ bool ats_enabled;
};
/* SMMU private data for an IOMMU domain */