Module Name: src
Committed By: he
Date: Mon May 18 00:14:27 UTC 2009
Modified Files:
src/sys/dev/pci: tgavar.h
Log Message:
Complete the device_t / softc split by changing the sc_dev member
from "struct device" to "device_t". Commit overlooked when tga.c was
changed?
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/pci/tgavar.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/tgavar.h
diff -u src/sys/dev/pci/tgavar.h:1.17 src/sys/dev/pci/tgavar.h:1.18
--- src/sys/dev/pci/tgavar.h:1.17 Wed Jan 7 01:31:01 2009
+++ src/sys/dev/pci/tgavar.h Mon May 18 00:14:27 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: tgavar.h,v 1.17 2009/01/07 01:31:01 ahoka Exp $ */
+/* $NetBSD: tgavar.h,v 1.18 2009/05/18 00:14:27 he Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -94,7 +94,7 @@
};
struct tga_softc {
- struct device sc_dev;
+ device_t sc_dev;
struct tga_devconfig *sc_dc; /* device configuration */
void *sc_intr; /* interrupt handler info */