diff options
| author | thorpej <thorpej@NetBSD.org> | 2005-06-27 03:36:25 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2005-06-27 03:36:25 +0000 |
| commit | 6ab17a336ee6ee320431e5b5e7b4bb1d719d2838 (patch) | |
| tree | 59c092f8d34317b982474027dc78b1e365841347 /sys/dev/microcode | |
| parent | 444efb36dbe80be2f7e8eeec7acc8781ba969fe3 (diff) | |
u_int8_t -> uint8_t
Diffstat (limited to 'sys/dev/microcode')
| -rw-r--r-- | sys/dev/microcode/cyclades-z/cyzfirm.h | 4 | ||||
| -rw-r--r-- | sys/dev/microcode/cyclades-z/cyzfirm2h.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/microcode/cyclades-z/cyzfirm.h b/sys/dev/microcode/cyclades-z/cyzfirm.h index a3a62a08abc..dbd5cbfe8b6 100644 --- a/sys/dev/microcode/cyclades-z/cyzfirm.h +++ b/sys/dev/microcode/cyclades-z/cyzfirm.h @@ -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, diff --git a/sys/dev/microcode/cyclades-z/cyzfirm2h.c b/sys/dev/microcode/cyclades-z/cyzfirm2h.c index d9a1e4cfafd..4afce9952e1 100644 --- a/sys/dev/microcode/cyclades-z/cyzfirm2h.c +++ b/sys/dev/microcode/cyclades-z/cyzfirm2h.c @@ -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) { |
