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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167453
4 changed files with 4 additions and 14 deletions

View file

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

View file

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

View file

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

View file

@ -3,6 +3,6 @@
.PATH: ${.CURDIR}/../../dev/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>