aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2012-11-12 07:34:05 +0000
committerDimitry Andric <dim@FreeBSD.org>2012-11-12 07:34:05 +0000
commit7fb0f60ca2d6ed85fa149669427e57e3d2b2c7a9 (patch)
tree61863a62671fce550917b0b108aad4482c7b720b /sys/dev/mii
parentac0672256e8dd42de71c8b07eda111ed7454d587 (diff)
Notes
Diffstat (limited to 'sys/dev/mii')
-rw-r--r--sys/dev/mii/mii.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mii/mii.c b/sys/dev/mii/mii.c
index f85c579070df..bba3f63e7961 100644
--- a/sys/dev/mii/mii.c
+++ b/sys/dev/mii/mii.c
@@ -626,7 +626,7 @@ mii_down(struct mii_data *mii)
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
};