[Nouveau] [PATCH envytools] Fix range end to the last value of timing table.

Christian Costa titan.costa at gmail.com
Mon Aug 25 12:00:07 PDT 2014


---
 nva/set_timings.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nva/set_timings.c b/nva/set_timings.c
index 7376486..985a707 100644
--- a/nva/set_timings.c
+++ b/nva/set_timings.c
@@ -506,7 +506,7 @@ shallow_dump(struct nvamemtiming_conf *conf)
 	if (conf->range.start == (unsigned char) -1)
 		conf->range.start = 0;
 	if (conf->range.end == (unsigned char) -1)
-		conf->range.end = conf->vbios.timing_entry_length;
+		conf->range.end = conf->vbios.timing_entry_length-1;
 
 	fprintf(stderr, "Shallow mode: Will iterate between %i and %i\n", conf->range.start, conf->range.end);
 
-- 
1.9.1



More information about the Nouveau mailing list