Commit fc85dc42 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP2+: Fix uninitialized sr_inst

Fix uninitialized sr_inst.

Fixes: fbfa463b ("ARM: OMAP2+: Fix smartreflex init regression after dropping legacy data")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a1ebdb37
...@@ -188,7 +188,7 @@ static const char * const dra7_sr_instances[] = { ...@@ -188,7 +188,7 @@ static const char * const dra7_sr_instances[] = {
int __init omap_devinit_smartreflex(void) int __init omap_devinit_smartreflex(void)
{ {
const char * const *sr_inst; const char * const *sr_inst = NULL;
int i, nr_sr = 0; int i, nr_sr = 0;
if (soc_is_omap44xx()) { if (soc_is_omap44xx()) {
......
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