u_int8_t -> uint8_t
This commit is contained in:
parent
444efb36db
commit
6ab17a336e
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cyzfirm.h,v 1.4 2005/02/27 00:27:23 perry Exp $ */
|
||||
/* $NetBSD: cyzfirm.h,v 1.5 2005/06/27 03:36:25 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Firmware for Cyclades Z series multiport serial boards.
|
||||
@ -10,7 +10,7 @@
|
||||
#ifndef _CYZFIRM_H_
|
||||
#define _CYZFIRM_H_
|
||||
|
||||
static const u_int8_t cycladesz_firmware[] = {
|
||||
static const uint8_t cycladesz_firmware[] = {
|
||||
0x43, 0x79, 0x63, 0x6c, 0x6f, 0x6d, 0x2d, 0x5a, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $ */
|
||||
/* $NetBSD: cyzfirm2h.c,v 1.4 2005/06/27 03:36:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Zembu Labs, Inc.
|
||||
@ -39,7 +39,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__RCSID("$NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $");
|
||||
__RCSID("$NetBSD: cyzfirm2h.c,v 1.4 2005/06/27 03:36:25 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/mman.h>
|
||||
@ -99,7 +99,7 @@ main(int argc, char *argv[])
|
||||
err(1, "unable to mmap input file");
|
||||
(void) close(i);
|
||||
|
||||
fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $\t*/\n\n");
|
||||
fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.4 2005/06/27 03:36:25 thorpej Exp $\t*/\n\n");
|
||||
fprintf(out_file, "\
|
||||
/*
|
||||
* Firmware for Cyclades Z series multiport serial boards.
|
||||
@ -110,7 +110,7 @@ main(int argc, char *argv[])
|
||||
fprintf(out_file, "#ifndef _%s_\n", include_name);
|
||||
fprintf(out_file, "#define\t_%s_\n\n", include_name);
|
||||
|
||||
fprintf(out_file, "static const u_int8_t cycladesz_firmware[] = {\n");
|
||||
fprintf(out_file, "static const uint8_t cycladesz_firmware[] = {\n");
|
||||
|
||||
i = 0;
|
||||
while (in_len != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user