Module Name: src Committed By: msaitoh Date: Wed Jan 29 02:16:02 UTC 2020
Modified Files: src/sys/dev/pci: if_casreg.h if_casvar.h Log Message: u_int{32,64}_t -> uint{32,64}_t. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/if_casreg.h cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/if_casvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/if_casreg.h diff -u src/sys/dev/pci/if_casreg.h:1.2 src/sys/dev/pci/if_casreg.h:1.3 --- src/sys/dev/pci/if_casreg.h:1.2 Thu Dec 26 17:51:08 2019 +++ src/sys/dev/pci/if_casreg.h Wed Jan 29 02:16:02 2020 @@ -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 @@ struct cas_desc { /* Completion ring */ struct cas_comp { - u_int64_t cc_word[4]; + uint64_t cc_word[4]; }; #define CAS_RC0_TYPE 0xc000000000000000ULL Index: src/sys/dev/pci/if_casvar.h diff -u src/sys/dev/pci/if_casvar.h:1.7 src/sys/dev/pci/if_casvar.h:1.8 --- src/sys/dev/pci/if_casvar.h:1.7 Thu Dec 26 17:51:08 2019 +++ src/sys/dev/pci/if_casvar.h Wed Jan 29 02:16:02 2020 @@ -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 @@ struct cas_softc { * 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];