cbus: retu: don't assing ret inside the if ()
authorFelipe Balbi <felipe.balbi@nokia.com>
Tue, 27 Apr 2010 01:21:22 +0000 (18:21 -0700)
committerTony Lindgren <tony@atomide.com>
Tue, 28 Sep 2010 19:02:03 +0000 (12:02 -0700)
better coding style.

Change:
if ((ret = driver_register(&retu_driver)))
into:
ret = driver_register(&retu_driver);
if (ret)

Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>

No differences found