Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58088541 authored by Roxana Blaj's avatar Roxana Blaj Committed by Greg Kroah-Hartman
Browse files

staging: iio: frequency: add new line after declarations



This fixes the checkpatch.pl warning:
WARNING: Missing a blank line after declarations

Signed-off-by: default avatarRoxana Blaj <roxanagabriela10@gmail.com>
Acked-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bb49a0f9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
static unsigned int ad9834_calc_freqreg(unsigned long mclk, unsigned long fout)
{
	unsigned long long freqreg = (u64) fout * (u64) (1 << AD9834_FREQ_BITS);

	do_div(freqreg, mclk);
	return freqreg;
}