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

Commit 2b1af87a authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Tony Lindgren
Browse files

arm: omap: sdram-nokia: improve error handling



Actually check for errors: print an error log and return NULL.

Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent e5f5b542
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -223,10 +223,14 @@ struct omap_sdrc_params *nokia_get_sdram_timings(void)
	int err = 0;
	int i;

	for (i = 0; i < ARRAY_SIZE(nokia_timings); i++)
	for (i = 0; i < ARRAY_SIZE(nokia_timings); i++) {
		err |= sdrc_timings(i, nokia_timings[i].rate,
				       nokia_timings[i].data);
		if (err)
			pr_err("%s: error with rate %ld: %d\n", __func__,
			       nokia_timings[i].rate, err);
	}

	return &nokia_sdrc_params[0];
	return err ? NULL : nokia_sdrc_params;
}