mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-19 18:27:42 +07:00
iommu/msm: Use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Kiran Padwal <kiran.padwal@smartplayin.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
c72acf69e2
commit
263bc3fd6a
@ -131,7 +131,7 @@ static int msm_iommu_probe(struct platform_device *pdev)
|
|||||||
struct clk *iommu_clk;
|
struct clk *iommu_clk;
|
||||||
struct clk *iommu_pclk;
|
struct clk *iommu_pclk;
|
||||||
struct msm_iommu_drvdata *drvdata;
|
struct msm_iommu_drvdata *drvdata;
|
||||||
struct msm_iommu_dev *iommu_dev = pdev->dev.platform_data;
|
struct msm_iommu_dev *iommu_dev = dev_get_platdata(&pdev->dev);
|
||||||
void __iomem *regs_base;
|
void __iomem *regs_base;
|
||||||
int ret, irq, par;
|
int ret, irq, par;
|
||||||
|
|
||||||
@ -263,7 +263,7 @@ static int msm_iommu_remove(struct platform_device *pdev)
|
|||||||
|
|
||||||
static int msm_iommu_ctx_probe(struct platform_device *pdev)
|
static int msm_iommu_ctx_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct msm_iommu_ctx_dev *c = pdev->dev.platform_data;
|
struct msm_iommu_ctx_dev *c = dev_get_platdata(&pdev->dev);
|
||||||
struct msm_iommu_drvdata *drvdata;
|
struct msm_iommu_drvdata *drvdata;
|
||||||
struct msm_iommu_ctx_drvdata *ctx_drvdata;
|
struct msm_iommu_ctx_drvdata *ctx_drvdata;
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user