Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'drivers_soc_for_5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone into arm/drivers

SOC: Keystone driver update for v5.13

Couple of cleanup fixes in PM AVS and WKUP M3 drivers

* tag 'drivers_soc_for_5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone:
soc: ti: wkup_m3_ipc: Remove redundant error printing in wkup_m3_ipc_probe()
PM: AVS: remove redundant dev_err call in omap_sr_probe()

Link: https://lore.kernel.org/r/1623564105-10273-1-git-send-email-santosh.shilimkar@oracle.com
Signed-off-by: Olof Johansson <olof@lixom.net>

+2 -6
+1 -3
drivers/soc/ti/smartreflex.c
··· 846 846 847 847 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); 848 848 sr_info->base = devm_ioremap_resource(&pdev->dev, mem); 849 - if (IS_ERR(sr_info->base)) { 850 - dev_err(&pdev->dev, "%s: ioremap fail\n", __func__); 849 + if (IS_ERR(sr_info->base)) 851 850 return PTR_ERR(sr_info->base); 852 - } 853 851 854 852 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); 855 853
+1 -3
drivers/soc/ti/wkup_m3_ipc.c
··· 445 445 446 446 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 447 447 m3_ipc->ipc_mem_base = devm_ioremap_resource(dev, res); 448 - if (IS_ERR(m3_ipc->ipc_mem_base)) { 449 - dev_err(dev, "could not ioremap ipc_mem\n"); 448 + if (IS_ERR(m3_ipc->ipc_mem_base)) 450 449 return PTR_ERR(m3_ipc->ipc_mem_base); 451 - } 452 450 453 451 irq = platform_get_irq(pdev, 0); 454 452 if (!irq) {