Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3320f036 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "iommu: arm-smmu: Fix a possible null pointer dereference"

parents a07e2a0f 98de7b7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2938,7 +2938,7 @@ static struct iommu_group *arm_smmu_device_group(struct device *dev)
	 */
	group = generic_device_group(dev);

	if (IS_ERR(group))
	if (IS_ERR_OR_NULL(group))
		return group;

	if (dev_is_pci(dev))