From: Severine Glock <[email protected]> MR4 is reported under debugfs with following format MR4=%d. Remove MR4= string for better convenience.
Signed-off-by: Severine Glock <[email protected]> --- drivers/memory/emif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/memory/emif.c b/drivers/memory/emif.c index 625732d..32ce601 100644 --- a/drivers/memory/emif.c +++ b/drivers/memory/emif.c @@ -147,7 +147,7 @@ static int emif_mr4_show(struct seq_file *s, void *unused) { struct emif_data *emif = s->private; - seq_printf(s, "MR4=%d\n", emif->temperature_level); + seq_printf(s, "%d\n", emif->temperature_level); return 0; } -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
