Unverified Commit e62f4045 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'omap-for-v6.3/omap1-signed' of...

Merge tag 'omap-for-v6.3/omap1-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/soc

One clean-up for omap1 for v6.3

One non-urgent change to use platform_device_put() instead of
platform_device_unregister().

* tag 'omap-for-v6.3/omap1-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
  ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()

Link: https://lore.kernel.org/r/pull-1674566532-427457@atomide.com


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents fc939b17 0414a100
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ static int __init omap1_dm_timer_init(void)
	kfree(pdata);

err_free_pdev:
	platform_device_unregister(pdev);
	platform_device_put(pdev);

	return ret;
}