touchpad: invert an if condition to allow for early return
if (foo) {
everything
}
changed to :
if (!foo)
return
everything
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
Loading
Please register or sign in to comment