commit | 7b8cbe92be6dc2665e3247f4b136199055972b5a | [log] [tgz] |
---|---|---|
author | Ian Abbott <abbotti@mev.co.uk> | Fri Aug 23 14:45:06 2013 +0100 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Aug 26 06:41:56 2013 -0700 |
tree | 26dda3a752c2a0be1a19d5323bdaff2b62d02a77 | |
parent | c2af5b9681a9d1beaf37310ee3d6a5c4860750d5 [diff] |
staging: comedi: comedi_bond: just check devprivs->devs once on detach The `while` loop in `bonding_detach()` doesn't need to check `devpriv->devs` each time round the loop. Move the test outside the loop. The enclosing `if (devpriv)` can be changed to `if (devpriv && devpriv->devs)` as everything in this `if` statement is associated with `devpriv->devs` anyway. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>