Merge "iommu/arm-smmu: avoid using ASID 0"

This commit is contained in:
Linux Build Service Account 2015-03-14 12:40:43 -07:00 committed by Gerrit - the friendly Code Review server
commit ef48422a4a
1 changed files with 2 additions and 2 deletions

View File

@ -388,8 +388,8 @@ struct arm_smmu_cfg {
};
#define INVALID_IRPTNDX 0xff
#define ARM_SMMU_CB_ASID(cfg) ((cfg)->cbndx)
#define ARM_SMMU_CB_VMID(cfg) ((cfg)->cbndx + 1)
#define ARM_SMMU_CB_ASID(cfg) ((cfg)->cbndx + 1)
#define ARM_SMMU_CB_VMID(cfg) ((cfg)->cbndx + 2)
struct arm_smmu_domain {
struct arm_smmu_device *smmu;