mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
iommu/arm-smmu-v3: Remove boolean bitfield for 'ats_enabled' flag
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>
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user