From e07a5ff574cb6835b6d4459f8dec217b36b1da1d Mon Sep 17 00:00:00 2001 From: jdolecek Date: Fri, 19 Jan 2001 08:54:21 +0000 Subject: [PATCH] constify --- sys/dev/usb/kue_fw.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/usb/kue_fw.h b/sys/dev/usb/kue_fw.h index baea41cacfb0..07777624c006 100644 --- a/sys/dev/usb/kue_fw.h +++ b/sys/dev/usb/kue_fw.h @@ -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 . 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 };