All of lore.kernel.org
 help / color / mirror / Atom feed
* drm/tve200: Checking for a failed platform_get_irq() call in tve200_probe()
@ 2020-04-09 13:05 ` Markus Elfring
  0 siblings, 0 replies; 15+ messages in thread
From: Markus Elfring @ 2020-04-09 13:05 UTC (permalink / raw)
  To: Linus Walleij, dri-devel; +Cc: David Airlie, kernel-janitors, LKML

Hello,

I have taken another look at the implementation of the function “tve200_probe”.
A software analysis approach points the following source code out for
further development considerations.
https://elixir.bootlin.com/linux/v5.6.3/source/drivers/gpu/drm/tve200/tve200_drv.c#L212
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/gpu/drm/tve200/tve200_drv.c?id=5d30bcacd91af6874481129797af364a53cd9b46#n212

	irq = platform_get_irq(pdev, 0);
	if (!irq) {
		ret = -EINVAL;
		goto clk_disable;
	}


The software documentation is providing the following information
for the used programming interface.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/base/platform.c?id=5d30bcacd91af6874481129797af364a53cd9b46#n221
https://elixir.bootlin.com/linux/v5.6.3/source/drivers/base/platform.c#L202

“…
 * Return: IRQ number on success, negative error number on failure.
…”

Would you like to reconsider the shown condition check?

Regards,
Markus

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

end of thread, other threads:[~2020-04-11 12:54 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-09 13:05 drm/tve200: Checking for a failed platform_get_irq() call in tve200_probe() Markus Elfring
2020-04-09 13:05 ` Markus Elfring
2020-04-09 13:05 ` Markus Elfring
2020-04-10 10:18 ` Sam Ravnborg
2020-04-10 10:18   ` Sam Ravnborg
2020-04-10 10:18   ` Sam Ravnborg
2020-04-10 10:56   ` Markus Elfring
2020-04-10 10:56     ` Markus Elfring
2020-04-10 10:56     ` Markus Elfring
2020-04-10 12:14     ` Sam Ravnborg
2020-04-10 12:14       ` Sam Ravnborg
2020-04-10 12:14       ` Sam Ravnborg
2020-04-10 12:25       ` Markus Elfring
2020-04-10 12:25         ` Markus Elfring
2020-04-10 12:25         ` Markus Elfring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.