mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 08:38:45 +02:00 
			
		
		
		
	fpga: dfl-fme-mgr: Convert to devm_platform_ioremap_resource()
Use devm_platform_ioremap_resource() to simplify code. Signed-off-by: Yangtao Li <frank.li@vivo.com> Acked-by: Xu Yilun <yilun.xu@intel.com> Link: https://lore.kernel.org/r/20230705094655.44753-3-frank.li@vivo.com Signed-off-by: Xu Yilun <yilun.xu@intel.com>
This commit is contained in:
		
							parent
							
								
									918e6224cd
								
							
						
					
					
						commit
						1e463430a9
					
				
					 1 changed files with 1 additions and 3 deletions
				
			
		|  | @ -280,7 +280,6 @@ static int fme_mgr_probe(struct platform_device *pdev) | |||
| 	struct device *dev = &pdev->dev; | ||||
| 	struct fme_mgr_priv *priv; | ||||
| 	struct fpga_manager *mgr; | ||||
| 	struct resource *res; | ||||
| 
 | ||||
| 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); | ||||
| 	if (!priv) | ||||
|  | @ -290,8 +289,7 @@ static int fme_mgr_probe(struct platform_device *pdev) | |||
| 		priv->ioaddr = pdata->ioaddr; | ||||
| 
 | ||||
| 	if (!priv->ioaddr) { | ||||
| 		res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||||
| 		priv->ioaddr = devm_ioremap_resource(dev, res); | ||||
| 		priv->ioaddr = devm_platform_ioremap_resource(pdev, 0); | ||||
| 		if (IS_ERR(priv->ioaddr)) | ||||
| 			return PTR_ERR(priv->ioaddr); | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Yangtao Li
						Yangtao Li