staging: octeon-usb: Removed unnessecary else after return
WARNING: else is generally not useful after return or break checkpatch.pl warning in octeon-hcd.c Signed-off-by: Sarah Khan <sarahjmi07@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c65cfb5e5a
commit
c9a114e70a
1 changed files with 1 additions and 2 deletions
|
@ -640,8 +640,7 @@ static inline int __cvmx_usb_get_data_pid(struct cvmx_usb_pipe *pipe)
|
|||
{
|
||||
if (pipe->pid_toggle)
|
||||
return 2; /* Data1 */
|
||||
else
|
||||
return 0; /* Data0 */
|
||||
return 0; /* Data0 */
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue