diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-10 05:45:40 +0300 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2023-08-02 11:37:06 +0300 |
commit | 7addb10510525f2eda9db4473ab9bb1b881eb9f4 (patch) | |
tree | e8c55c8a38bfd03adba06bcce6ff506af00956ee /drivers | |
parent | 61e6ae711ada4895d124082bc163586766579cd7 (diff) | |
download | linux-7addb10510525f2eda9db4473ab9bb1b881eb9f4.tar.xz |
ata: ahci_octeon: Convert to devm_platform_ioremap_resource()
Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/ahci_octeon.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ata/ahci_octeon.c b/drivers/ata/ahci_octeon.c index e89807fa928e..9accf8923891 100644 --- a/drivers/ata/ahci_octeon.c +++ b/drivers/ata/ahci_octeon.c @@ -31,13 +31,11 @@ static int ahci_octeon_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; struct device_node *node = dev->of_node; - struct resource *res; void __iomem *base; u64 cfg; int ret; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - base = devm_ioremap_resource(&pdev->dev, res); + base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(base)) return PTR_ERR(base); |