linux-m68k.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] m68k/amiga: Add missing platform_device_unregister() call in amiga_init_devices()
@ 2020-07-28 14:50 Markus Elfring
  2020-07-28 15:54 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 2+ messages in thread
From: Markus Elfring @ 2020-07-28 14:50 UTC (permalink / raw)
  To: Qinglang Miao, linux-m68k
  Cc: kernel-janitors, linux-kernel, Geert Uytterhoeven,
	Greg Kroah-Hartman, Stephen Rothwell

> Add the missing platform_device_unregister() before return
> from amiga_init_devices() in the error handling case.

Will the tag “Fixes” become helpful for the commit message?


…
> +++ b/arch/m68k/amiga/platform.c
> @@ -188,8 +188,10 @@  static int __init amiga_init_devices(void)
>  			return PTR_ERR(pdev);
>  		error = platform_device_add_data(pdev, &a1200_ide_pdata,
>  						 sizeof(a1200_ide_pdata));
> -		if (error)
> +		if (error) {
> +			platform_device_unregister(pdev);
>  			return error;
> +		}
>  	}
…

I suggest to add a jump target for the desired exception handling.

 		if (error)
+			goto unregister_device;


Regards,
Markus

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-28 15:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-28 14:50 [PATCH] m68k/amiga: Add missing platform_device_unregister() call in amiga_init_devices() Markus Elfring
2020-07-28 15:54 ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).