ANDROID: KVM: arm64: iommu: Remove spurious plus ("+") sign

Remove spurious plus ("+") at the beginning of a line. This has
presumably been introduced by copying a line from a patch file in
unified diff format where the "+" represents the addition of a line.

Fixes: be3195fe7b ("ANDROID: KVM: arm64: iommu: Use unified allocator interface")
Change-Id: Icc0dd10d2d87e23d4e21bbf34fca0c4dda72783d
Signed-off-by: Daniel Mentz <danielmentz@google.com>
This commit is contained in:
Daniel Mentz 2024-09-18 16:29:52 -07:00 committed by Treehugger Robot
parent 2c173456ce
commit ff50f45b4c

View File

@ -90,7 +90,7 @@ static int kvm_arm_smmu_topup_memcache(struct arm_smccc_res *res)
if (req.mem.dest == REQ_MEM_DEST_HYP_IOMMU) {
return __pkvm_topup_hyp_alloc_mgt(HYP_ALLOC_MGT_IOMMU_ID,
+ req.mem.nr_pages, req.mem.sz_alloc);
req.mem.nr_pages, req.mem.sz_alloc);
} else if (req.mem.dest == REQ_MEM_DEST_HYP_ALLOC) {
/* Fill hyp alloc*/
return __pkvm_topup_hyp_alloc(req.mem.nr_pages);