public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [patch review] gspca - mr97310a: return error instead of -1 in sd_mod_init
@ 2009-03-27 16:08 Alexey Klimov
  2009-03-27 19:01 ` Jean-Francois Moine
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Klimov @ 2009-03-27 16:08 UTC (permalink / raw)
  To: Jean-Francois Moine; +Cc: linux-media

Hello, Jean-Francois

What do you think about such small cleanup ?

---
Patch reformats sd_mod_init in the way to make it return error code from
usb_register instead of -1.

Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>

--
diff -r 56cf0f1772f7 linux/drivers/media/video/gspca/mr97310a.c
--- a/linux/drivers/media/video/gspca/mr97310a.c	Mon Mar 23 19:18:34 2009 -0300
+++ b/linux/drivers/media/video/gspca/mr97310a.c	Fri Mar 27 01:42:28 2009 +0300
@@ -347,8 +347,10 @@
 /* -- module insert / remove -- */
 static int __init sd_mod_init(void)
 {
-	if (usb_register(&sd_driver) < 0)
-		return -1;
+	int ret;
+	ret = usb_register(&sd_driver);
+	if (ret < 0)
+		return ret;
 	PDEBUG(D_PROBE, "registered");
 	return 0;
 }


-- 
Best regards, Klimov Alexey


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

end of thread, other threads:[~2009-03-28 19:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-27 16:08 [patch review] gspca - mr97310a: return error instead of -1 in sd_mod_init Alexey Klimov
2009-03-27 19:01 ` Jean-Francois Moine
2009-03-28 20:08   ` A question about Documentation/video4linux/gspca.txt Theodore Kilgore

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox