Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic Use C99 types, s/u_int32_t/uint32_t/. No functio...
details: https://anonhg.NetBSD.org/src/rev/dcb19ac73dbf
branches: trunk
changeset: 747032:dcb19ac73dbf
user: dyoung <dyoung%NetBSD.org@localhost>
date: Fri Aug 28 15:29:16 2009 +0000
description:
Use C99 types, s/u_int32_t/uint32_t/. No functional change intended.
diffstat:
sys/dev/ic/tulipreg.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (24 lines):
diff -r de053798d2fd -r dcb19ac73dbf sys/dev/ic/tulipreg.h
--- a/sys/dev/ic/tulipreg.h Fri Aug 28 15:15:03 2009 +0000
+++ b/sys/dev/ic/tulipreg.h Fri Aug 28 15:29:16 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tulipreg.h,v 1.35 2009/08/27 20:23:32 dyoung Exp $ */
+/* $NetBSD: tulipreg.h,v 1.36 2009/08/28 15:29:16 dyoung Exp $ */
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -154,10 +154,10 @@
* be a multiple of 4.
*/
struct tulip_desc {
- volatile u_int32_t td_status; /* Status */
- volatile u_int32_t td_ctl; /* Control and Byte Counts */
- volatile u_int32_t td_bufaddr1; /* Buffer Address 1 */
- volatile u_int32_t td_bufaddr2; /* Buffer Address 2 */
+ volatile uint32_t td_status; /* Status */
+ volatile uint32_t td_ctl; /* Control and Byte Counts */
+ volatile uint32_t td_bufaddr1; /* Buffer Address 1 */
+ volatile uint32_t td_bufaddr2; /* Buffer Address 2 */
} __packed __aligned(4);
/*
Home |
Main Index |
Thread Index |
Old Index