Staging: lustre: Fix return in void function warning
This fixes checkpatch.pl warning: WARNING: void function return statements are not generally useful Signed-off-by: Darshana Padmadas <darshanapadmadas@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6606a77f92
commit
3e9cc5b045
|
@ -83,6 +83,5 @@ static inline void cfs_memory_pressure_restore(int old)
|
||||||
memory_pressure_set();
|
memory_pressure_set();
|
||||||
else
|
else
|
||||||
memory_pressure_clr();
|
memory_pressure_clr();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue