Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Mar 2008 18:05:28 GMT
From:      "Randall R. Stewart" <rrs@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 136929 for review
Message-ID:  <200803051805.m25I5SNk081427@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=136929

Change 136929 by rrs@rrs-mips2-jnpr on 2008/03/05 18:05:19

	Fix bug in timing setup. They had the structures in
	       the wrong place, resulting in an interrupt every 255*15 
	       instructions. 

Affected files ...

.. //depot/projects/mips2-jnpr/src/sys/dev/rgmii/octeon_rgmx.c#7 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/sys/dev/rgmii/octeon_rgmx.c#7 (text+ko) ====

@@ -1458,10 +1458,10 @@
 	uint64_t word64;
 	struct {
 		uint64_t rsvd3:4;
-		uint64_t thr_freq:28;
+		uint64_t thr_period:28;
 		/* R / O */
 		uint64_t rsvd2:4;
-		uint64_t thr_period:20;
+		uint64_t thr_freq:20;
 		uint64_t rsvd:8;
 	}      bits;
 }     octeon_rgmx_pow_int_pc_t;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803051805.m25I5SNk081427>