Commit 5c143123 authored by Arushi Singhal's avatar Arushi Singhal Committed by Greg Kroah-Hartman

staging: greybus: compress return logic

Simplify function returns by merging assignment and return.
Signed-off-by: default avatarArushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0d6ff616
......@@ -365,11 +365,8 @@ static void gb_loopback_calculate_stats(struct gb_loopback *gb, bool error);
static u32 gb_loopback_nsec_to_usec_latency(u64 elapsed_nsecs)
{
u32 lat;
do_div(elapsed_nsecs, NSEC_PER_USEC);
lat = elapsed_nsecs;
return lat;
return elapsed_nsecs;
}
static u64 __gb_loopback_calc_latency(u64 t1, u64 t2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment