Cornelia Huck dc0afa8388 Driver core: coding style cleanup
This converts code of the form

	if ((error = some_func()))
		goto fixup;
to
	error = some_func();
	if (error)
		goto fixup;

Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2007-07-11 16:09:02 -07:00
..
2007-07-11 16:09:02 -07:00
2007-07-11 16:09:02 -07:00
2007-05-21 09:18:19 -07:00
2006-09-20 15:58:44 +02:00
2006-06-21 12:40:49 -07:00
2007-02-09 17:39:36 -05:00
2007-05-07 12:12:51 -07:00
2007-07-11 16:09:01 -07:00