my(4) doesn't need miibus(4).

Approved by:	rwatson (mentor)
Obtained from:	DragonFly
MFC after:	1 week
This commit is contained in:
Christian Brueffer 2007-03-11 15:20:04 +00:00
parent 70d21ee72b
commit cc249a3fce
4 changed files with 4 additions and 14 deletions

View File

@ -8,7 +8,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd December 13, 2006 .Dd March 11, 2007
.Dt MIIBUS 4 .Dt MIIBUS 4
.Os .Os
.Sh NAME .Sh NAME
@ -69,8 +69,6 @@ Sun HME Ethernet
Level 1 LXT1001 NetCellerator Gigabit Ethernet Level 1 LXT1001 NetCellerator Gigabit Ethernet
.It Xr msk 4 .It Xr msk 4
Marvell/SysKonnect Yukon II Gigabit Ethernet Marvell/SysKonnect Yukon II Gigabit Ethernet
.It Xr my 4
Myson Technologies PCI Ethernet adaptors
.It Xr nge 4 .It Xr nge 4
National Semiconductor DP83820/DP83821 Gigabit Ethernet National Semiconductor DP83820/DP83821 Gigabit Ethernet
.It Xr nve 4 .It Xr nve 4
@ -131,7 +129,6 @@ but as a result are not well behaved newbus device drivers.
.Xr hme 4 , .Xr hme 4 ,
.Xr lge 4 , .Xr lge 4 ,
.Xr msk 4 , .Xr msk 4 ,
.Xr my 4 ,
.Xr netintro 4 , .Xr netintro 4 ,
.Xr nge 4 , .Xr nge 4 ,
.Xr nve 4 , .Xr nve 4 ,

View File

@ -24,7 +24,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd July 16, 2005 .Dd March 11, 2007
.Dt MY 4 .Dt MY 4
.Os .Os
.Sh NAME .Sh NAME
@ -32,10 +32,9 @@
.Nd "Myson Technology Ethernet PCI driver" .Nd "Myson Technology Ethernet PCI driver"
.Sh SYNOPSIS .Sh SYNOPSIS
To compile this driver into the kernel, To compile this driver into the kernel,
place the following lines in your place the following line in your
kernel configuration file: kernel configuration file:
.Bd -ragged -offset indent .Bd -ragged -offset indent
.Cd "device miibus"
.Cd "device my" .Cd "device my"
.Ed .Ed
.Pp .Pp
@ -70,7 +69,6 @@ Myson MTD89X PCI Gigabit Ethernet chip
.Sh SEE ALSO .Sh SEE ALSO
.Xr altq 4 , .Xr altq 4 ,
.Xr de 4 , .Xr de 4 ,
.Xr miibus 4 ,
.Xr netintro 4 , .Xr netintro 4 ,
.Xr pci 4 , .Xr pci 4 ,
.Xr ifconfig 8 .Xr ifconfig 8

View File

@ -64,11 +64,6 @@ __FBSDID("$FreeBSD$");
#include <dev/pci/pcireg.h> #include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h> #include <dev/pci/pcivar.h>
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
#include "miibus_if.h"
/* /*
* #define MY_USEIOSPACE * #define MY_USEIOSPACE
*/ */

View File

@ -3,6 +3,6 @@
.PATH: ${.CURDIR}/../../dev/my .PATH: ${.CURDIR}/../../dev/my
KMOD= if_my KMOD= if_my
SRCS= if_my.c device_if.h bus_if.h pci_if.h miibus_if.h SRCS= if_my.c device_if.h bus_if.h pci_if.h
.include <bsd.kmod.mk> .include <bsd.kmod.mk>