This commit is contained in:
jdolecek 2001-01-19 08:54:21 +00:00
parent b0ee440a2f
commit e07a5ff574

View File

@ -1,4 +1,4 @@
/* $NetBSD: kue_fw.h,v 1.2 2000/03/27 12:33:54 augustss Exp $ */
/* $NetBSD: kue_fw.h,v 1.3 2001/01/19 08:54:21 jdolecek Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
* Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
@ -86,7 +86,7 @@
#define KUE_QTINTR_LOAD_CODE_HIGH 0x9C
/* Firmware code segment */
Static unsigned char kue_code_seg[] =
Static const unsigned char kue_code_seg[] =
{
/******************************************/
/* NOTE: B6/C3 is data header signature */
@ -578,7 +578,7 @@ Static unsigned char kue_code_seg[] =
};
/* Firmware fixup (data?) segment */
Static unsigned char kue_fix_seg[] =
Static const unsigned char kue_fix_seg[] =
{
/******************************************/
/* NOTE: B6/C3 is data header signature */
@ -681,6 +681,6 @@ Static unsigned char kue_fix_seg[] =
/* Fixup command. */
#define KUE_TRIGCMD_OFFSET 5
Static unsigned char kue_trig_seg[] = {
Static const unsigned char kue_trig_seg[] = {
0xb6, 0xc3, 0x01, 0x00, 0x06, 0x64, 0x00, 0x00
};