On Tue, 2011-06-21 at 19:05 -0300, Gustavo F. Padovan wrote: > > static int __init nfc_init(void) > > { > > + int rc; > > + > > printk(KERN_INFO "NFC Core ver %s\n", VERSION); > > > > - return class_register(&nfc_class); > > + rc = class_register(&nfc_class); > > + if (rc) > > + goto err; > > Just return rc here and get rid of the label. Seriously, please trim your quotes. If you're commenting on a specific piece of code, you can well remove all the code you're not commenting on like I did above. johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html