Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci u_int{32,64}_t -> uint{32,64}_t. No functional c...
details: https://anonhg.NetBSD.org/src/rev/4473da02d04a
branches: trunk
changeset: 968793:4473da02d04a
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Wed Jan 29 02:16:02 2020 +0000
description:
u_int{32,64}_t -> uint{32,64}_t. No functional change.
diffstat:
sys/dev/pci/if_casreg.h | 4 ++--
sys/dev/pci/if_casvar.h | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 1251fa892bc5 -r 4473da02d04a sys/dev/pci/if_casreg.h
--- a/sys/dev/pci/if_casreg.h Wed Jan 29 01:54:34 2020 +0000
+++ b/sys/dev/pci/if_casreg.h Wed Jan 29 02:16:02 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_casreg.h,v 1.2 2019/12/26 17:51:08 msaitoh Exp $ */
+/* $NetBSD: if_casreg.h,v 1.3 2020/01/29 02:16:02 msaitoh Exp $ */
/* $OpenBSD: if_casreg.h,v 1.10 2008/05/31 22:49:03 kettenis Exp $ */
/*
@@ -586,7 +586,7 @@
/* Completion ring */
struct cas_comp {
- u_int64_t cc_word[4];
+ uint64_t cc_word[4];
};
#define CAS_RC0_TYPE 0xc000000000000000ULL
diff -r 1251fa892bc5 -r 4473da02d04a sys/dev/pci/if_casvar.h
--- a/sys/dev/pci/if_casvar.h Wed Jan 29 01:54:34 2020 +0000
+++ b/sys/dev/pci/if_casvar.h Wed Jan 29 02:16:02 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_casvar.h,v 1.7 2019/12/26 17:51:08 msaitoh Exp $ */
+/* $NetBSD: if_casvar.h,v 1.8 2020/01/29 02:16:02 msaitoh Exp $ */
/* $OpenBSD: if_casvar.h,v 1.6 2009/06/13 12:18:58 kettenis Exp $ */
/*
@@ -183,7 +183,7 @@
* Software state for transmit and receive descriptors.
*/
struct cas_sxd sc_txd[CAS_NTXDESC];
- u_int32_t sc_tx_cnt, sc_tx_prod, sc_tx_cons;
+ uint32_t sc_tx_cnt, sc_tx_prod, sc_tx_cons;
struct cas_rxsoft sc_rxsoft[CAS_NRXDESC];
struct cas_rxsoft sc_rxsoft2[CAS_NRXDESC];
Home |
Main Index |
Thread Index |
Old Index