[Midnightbsd-cvs] src [7237] trunk/sys/dev/mii/mii.c: remove useless const

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Tue Aug 11 21:41:20 EDT 2015


Revision: 7237
          http://svnweb.midnightbsd.org/src/?rev=7237
Author:   laffer1
Date:     2015-08-11 21:41:19 -0400 (Tue, 11 Aug 2015)
Log Message:
-----------
remove useless const

Modified Paths:
--------------
    trunk/sys/dev/mii/mii.c

Modified: trunk/sys/dev/mii/mii.c
===================================================================
--- trunk/sys/dev/mii/mii.c	2015-08-12 01:37:40 UTC (rev 7236)
+++ trunk/sys/dev/mii/mii.c	2015-08-12 01:41:19 UTC (rev 7237)
@@ -626,7 +626,7 @@
 static unsigned char
 mii_bitreverse(unsigned char x)
 {
-	static unsigned const char const nibbletab[16] = {
+	static unsigned const char nibbletab[16] = {
 		0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15
 	};
 



More information about the Midnightbsd-cvs mailing list