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

Commit f5f43dcf authored by Emilio López's avatar Emilio López Committed by Rafael J. Wysocki
Browse files

cpufreq: highbank: do not initialize array with a loop



As uninitialized array members will be initialized to zero, we can
avoid using a for loop by setting a value to it.

Signed-off-by: default avatarEmilio López <emilio@elopez.com.ar>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Acked-By: default avatarMark Langsdorf <mark.langsdorf@calxeda.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 4b875810
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -28,13 +28,7 @@

static int hb_voltage_change(unsigned int freq)
{
	int i;
	u32 msg[HB_CPUFREQ_IPC_LEN];

	msg[0] = HB_CPUFREQ_CHANGE_NOTE;
	msg[1] = freq / 1000000;
	for (i = 2; i < HB_CPUFREQ_IPC_LEN; i++)
		msg[i] = 0;
	u32 msg[HB_CPUFREQ_IPC_LEN] = {HB_CPUFREQ_CHANGE_NOTE, freq / 1000000};

	return pl320_ipc_transmit(msg);
}