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

Commit bc46c229 authored by Colin Ian King's avatar Colin Ian King Committed by Joerg Roedel
Browse files

iommu/fsl: Fix spelling mistake pci_endpt_partioning -> pci_endpt_partitioning



Trivial fix to spelling mistake in variable name

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 4f973ed3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -916,13 +916,13 @@ static struct iommu_group *get_shared_pci_device_group(struct pci_dev *pdev)
static struct iommu_group *get_pci_device_group(struct pci_dev *pdev)
{
	struct pci_controller *pci_ctl;
	bool pci_endpt_partioning;
	bool pci_endpt_partitioning;
	struct iommu_group *group = NULL;

	pci_ctl = pci_bus_to_host(pdev->bus);
	pci_endpt_partioning = check_pci_ctl_endpt_part(pci_ctl);
	pci_endpt_partitioning = check_pci_ctl_endpt_part(pci_ctl);
	/* We can partition PCIe devices so assign device group to the device */
	if (pci_endpt_partioning) {
	if (pci_endpt_partitioning) {
		group = pci_device_group(&pdev->dev);

		/*