Re: [PATCH v6 1/6] iommu/tegra-smmu: Rename struct iommu_group *group to *grp

2021-10-07 Thread Thierry Reding
On Mon, Sep 13, 2021 at 06:38:53PM -0700, Nicolin Chen wrote:
> There are a few structs using "group" for their pointer instances.
> This gets confusing sometimes. The instance of struct iommu_group
> is used in local function with an alias "grp", which can separate
> it from others.
> 
> So this patch simply renames "group" to "grp" as a cleanup.
> 
> Signed-off-by: Nicolin Chen 
> ---
>  drivers/iommu/tegra-smmu.c | 16 
>  1 file changed, 8 insertions(+), 8 deletions(-)

Acked-by: Thierry Reding 


signature.asc
Description: PGP signature
___
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

[PATCH v6 1/6] iommu/tegra-smmu: Rename struct iommu_group *group to *grp

2021-09-13 Thread Nicolin Chen
There are a few structs using "group" for their pointer instances.
This gets confusing sometimes. The instance of struct iommu_group
is used in local function with an alias "grp", which can separate
it from others.

So this patch simply renames "group" to "grp" as a cleanup.

Signed-off-by: Nicolin Chen 
---
 drivers/iommu/tegra-smmu.c | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/iommu/tegra-smmu.c b/drivers/iommu/tegra-smmu.c
index 0a281833f611..6ebae635d3aa 100644
--- a/drivers/iommu/tegra-smmu.c
+++ b/drivers/iommu/tegra-smmu.c
@@ -23,7 +23,7 @@ struct tegra_smmu_group {
struct list_head list;
struct tegra_smmu *smmu;
const struct tegra_smmu_group_soc *soc;
-   struct iommu_group *group;
+   struct iommu_group *grp;
unsigned int swgroup;
 };
 
@@ -909,7 +909,7 @@ static struct iommu_group *tegra_smmu_device_group(struct 
device *dev)
/* Find existing iommu_group associating with swgroup or group_soc */
list_for_each_entry(group, >groups, list)
if ((group->swgroup == swgroup) || (soc && group->soc == soc)) {
-   grp = iommu_group_ref_get(group->group);
+   grp = iommu_group_ref_get(group->grp);
mutex_unlock(>lock);
return grp;
}
@@ -926,23 +926,23 @@ static struct iommu_group *tegra_smmu_device_group(struct 
device *dev)
group->soc = soc;
 
if (dev_is_pci(dev))
-   group->group = pci_device_group(dev);
+   group->grp = pci_device_group(dev);
else
-   group->group = generic_device_group(dev);
+   group->grp = generic_device_group(dev);
 
-   if (IS_ERR(group->group)) {
+   if (IS_ERR(group->grp)) {
devm_kfree(smmu->dev, group);
mutex_unlock(>lock);
return NULL;
}
 
-   iommu_group_set_iommudata(group->group, group, 
tegra_smmu_group_release);
+   iommu_group_set_iommudata(group->grp, group, tegra_smmu_group_release);
if (soc)
-   iommu_group_set_name(group->group, soc->name);
+   iommu_group_set_name(group->grp, soc->name);
list_add_tail(>list, >groups);
mutex_unlock(>lock);
 
-   return group->group;
+   return group->grp;
 }
 
 static int tegra_smmu_of_xlate(struct device *dev,
-- 
2.17.1

___
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu