Skip to content

Commit

Permalink
bus: ti-sysc: Fix variable set but not used warning for reinit_modules
Browse files Browse the repository at this point in the history
commit 1b1da99 upstream.

Fix drivers/bus/ti-sysc.c:2494:13: error: variable 'error' set but not
used introduced by commit 9d88136 ("bus: ti-sysc: Add quirk handling
for reinit on context lost").

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
tmlind authored and gregkh committed Dec 22, 2021
1 parent 70692b0 commit e24fc89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/bus/ti-sysc.c
Expand Up @@ -2443,12 +2443,11 @@ static void sysc_reinit_modules(struct sysc_soc_info *soc)
struct sysc_module *module;
struct list_head *pos;
struct sysc *ddata;
int error = 0;

list_for_each(pos, &sysc_soc->restored_modules) {
module = list_entry(pos, struct sysc_module, node);
ddata = module->ddata;
error = sysc_reinit_module(ddata, ddata->enabled);
sysc_reinit_module(ddata, ddata->enabled);
}
}

Expand Down

0 comments on commit e24fc89

Please sign in to comment.