WARNING: else is generally not required after return
checkpatch.pl warning in osdep_service.h
Signed-off-by: Sarah Khan <sarahjmi07@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 {
        if (down_interruptible(sema))
                return _FAIL;
-       else
-               return _SUCCESS;
+       return _SUCCESS;
 }
 
 static inline u32 end_of_queue_search(struct list_head *head,
                struct list_head *plist)
 {
-       if (head == plist)
-               return true;
-       else
-               return false;
+       return (head == plist);
 }
 
 static inline void sleep_schedulable(int ms)