Module Name: src
Committed By: cegger
Date: Thu May 7 07:33:05 UTC 2009
Modified Files:
src/sys/dev/pci: twevar.h
Log Message:
struct device * -> device_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/pci/twevar.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/twevar.h
diff -u src/sys/dev/pci/twevar.h:1.28 src/sys/dev/pci/twevar.h:1.29
--- src/sys/dev/pci/twevar.h:1.28 Wed May 6 10:34:33 2009
+++ src/sys/dev/pci/twevar.h Thu May 7 07:33:05 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: twevar.h,v 1.28 2009/05/06 10:34:33 cegger Exp $ */
+/* $NetBSD: twevar.h,v 1.29 2009/05/07 07:33:05 cegger Exp $ */
/*-
* Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc.
@@ -45,7 +45,7 @@
uint8_t td_type;
uint8_t td_stripe;
- struct device *td_dev;
+ device_t td_dev;
const struct twe_callbacks *td_callbacks;
};
@@ -83,7 +83,7 @@
struct twe_context {
void (*tx_handler)(struct twe_ccb *, int);
void *tx_context;
- struct device *tx_dv;
+ device_t tx_dv;
};
/* Command control block. */