diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 20:56:32 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 20:56:32 +0000 |
| commit | a3ae595729fcd63e2be5e4130e05b486a8a58009 (patch) | |
| tree | 5445349a79deb99e7568d397a71944333638516f | |
| parent | feea0ab05b97f41e7b7ff0be021c8e8d126db6cc (diff) | |
Notes
| -rw-r--r-- | sys/dev/tdfx/tdfx_pci.c | 5 | ||||
| -rw-r--r-- | sys/dev/tdfx/tdfx_vars.h | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/tdfx/tdfx_pci.c b/sys/dev/tdfx/tdfx_pci.c index 0530cd8268cc..24879bb23561 100644 --- a/sys/dev/tdfx/tdfx_pci.c +++ b/sys/dev/tdfx/tdfx_pci.c @@ -40,7 +40,6 @@ #include <sys/param.h> -#include <sys/bus_private.h> #include <sys/bus.h> #include <sys/cdefs.h> #include <sys/conf.h> @@ -269,8 +268,8 @@ tdfx_attach(device_t dev) { * voodoo cards, for the mad. The user must set the link, or use MAKEDEV. * Why would we want that many voodoo cards anyhow? */ - tdfx_info->devt = make_dev(&tdfx_cdev, dev->unit, 0, 0, 02660, - "3dfx%x", dev->unit); + tdfx_info->devt = make_dev(&tdfx_cdev, device_get_unit(dev), + 0, 0, 02660, "3dfx%x", device_get_unit(dev)); return 0; } diff --git a/sys/dev/tdfx/tdfx_vars.h b/sys/dev/tdfx/tdfx_vars.h index 890a3e2e2222..55bb060ea0df 100644 --- a/sys/dev/tdfx/tdfx_vars.h +++ b/sys/dev/tdfx/tdfx_vars.h @@ -39,7 +39,6 @@ #include <sys/memrange.h> #include <sys/param.h> -#include <sys/bus_private.h> #include <sys/bus.h> #include <sys/cdefs.h> |
