summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgallatin <gallatin@FreeBSD.org>2008-01-15 15:04:40 +0000
committergallatin <gallatin@FreeBSD.org>2008-01-15 15:04:40 +0000
commit4c5f0cc5c49ca369ab18c4fcfe180ac666abe872 (patch)
treee496bcff543d2f6afb84d242e11b9d4477e1278c
parent2f49f42d9897ece98b6573c303c5f917a2e7e0f0 (diff)
downloadFreeBSD-src-4c5f0cc5c49ca369ab18c4fcfe180ac666abe872.zip
FreeBSD-src-4c5f0cc5c49ca369ab18c4fcfe180ac666abe872.tar.gz
Fix accidental swap of "const" for "static" in mxge firmware byte arrays
caused by running my import script with the wrong args.
-rw-r--r--sys/dev/mxge/eth_z8e.h6
-rw-r--r--sys/dev/mxge/ethp_z8e.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mxge/eth_z8e.h b/sys/dev/mxge/eth_z8e.h
index 3850156..94ffdad 100644
--- a/sys/dev/mxge/eth_z8e.h
+++ b/sys/dev/mxge/eth_z8e.h
@@ -29,10 +29,10 @@ $FreeBSD$
***************************************************************************/
/* Using zlib-1.1.3. gendat version $Name: $ */
-const unsigned int eth_z8e_uncompressed_length = 606168;
+static unsigned int eth_z8e_uncompressed_length = 606168;
#define U (unsigned char)
-const unsigned int eth_z8e_length = 52566;
-const unsigned char eth_z8e[52566] = {
+static unsigned int eth_z8e_length = 52566;
+static unsigned char eth_z8e[52566] = {
U 0x78,U 0xDA,U 0xEC,U 0xBD,
U 0x0F,U 0x74,U 0x54,U 0xD5,
U 0xB5,U 0x3F,U 0xBE,U 0x67,
diff --git a/sys/dev/mxge/ethp_z8e.h b/sys/dev/mxge/ethp_z8e.h
index fb287b1..efc1b8e 100644
--- a/sys/dev/mxge/ethp_z8e.h
+++ b/sys/dev/mxge/ethp_z8e.h
@@ -29,10 +29,10 @@ $FreeBSD$
***************************************************************************/
/* Using zlib-1.1.3. gendat version $Name: $ */
-const unsigned int ethp_z8e_uncompressed_length = 615208;
+static unsigned int ethp_z8e_uncompressed_length = 615208;
#define U (unsigned char)
-const unsigned int ethp_z8e_length = 52908;
-const unsigned char ethp_z8e[52908] = {
+static unsigned int ethp_z8e_length = 52908;
+static unsigned char ethp_z8e[52908] = {
U 0x78,U 0xDA,U 0xEC,U 0xBD,
U 0x0F,U 0x74,U 0x54,U 0xD5,
U 0xB5,U 0x3F,U 0xBE,U 0x67,
OpenPOWER on IntegriCloud