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

Commit a67d5849 authored by Yangtao Li's avatar Yangtao Li Committed by Rafael J. Wysocki
Browse files

cpufreq: nforce2: Remove meaningless return



Delete a line of meaningless return and some useless blank lines. In a function
whose return type is void, returning on the last line is not required.

Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent df3e1c83
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -123,8 +123,6 @@ static void nforce2_write_pll(int pll)
	/* Now write the value in all 64 registers */
	for (temp = 0; temp <= 0x3f; temp++)
		pci_write_config_dword(nforce2_dev, NFORCE2_PLLREG, pll);

	return;
}

/**
@@ -438,4 +436,3 @@ static void __exit nforce2_exit(void)

module_init(nforce2_init);
module_exit(nforce2_exit);