Disabuse this driver of the notion that it needs to include
<sys/bus_private.h> to find the unit from a device_t. Spotted by: FlexeLint
This commit is contained in:
parent
feea0ab05b
commit
a3ae595729
@ -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;
|
||||
}
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user