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-10 08:03:34 +02:00
2007-07-10 17:51:13 -07:00
2007-07-11 16:09:00 -07:00
2007-07-10 08:03:34 +02:00
2007-07-11 16:09:00 -07:00
2007-07-10 11:24:54 +02:00
2007-07-10 17:33:05 +01:00
2007-07-10 11:28:31 +01:00