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-02 21:06:48 -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-06-28 11:34:53 -07:00
2007-07-11 16:09:00 -07:00
2007-07-10 08:03:34 +02:00
2007-06-08 17:23:33 -07:00
2007-07-11 16:09:00 -07:00
2007-07-10 11:24:54 +02:00
2007-07-02 10:12:34 -04:00
2007-07-10 17:33:05 +01:00
2007-06-28 11:34:54 -07:00
2007-07-10 11:28:31 +01:00