mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-26 11:47:31 +00:00
One last tweak before I turn in for the evening: the driver name in
the driver_t declaration should be "skc" not "sk". Technically, "skc" is the parent PCI device (the SysKonnect GEnesis controller) and "sk0" and "sk1" are the network interfaces that get attached to it.
This commit is contained in:
parent
98edb3e178
commit
09590dc4c1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=49017
@ -29,7 +29,7 @@
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
* THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $
|
||||
* $Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -102,7 +102,7 @@
|
||||
|
||||
#ifndef lint
|
||||
static const char rcsid[] =
|
||||
"$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $";
|
||||
"$Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $";
|
||||
#endif
|
||||
|
||||
static struct sk_type sk_devs[] = {
|
||||
@ -175,7 +175,7 @@ static device_method_t sk_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sk_driver = {
|
||||
"sk",
|
||||
"skc",
|
||||
sk_methods,
|
||||
sizeof(struct sk_softc)
|
||||
};
|
||||
|
@ -29,7 +29,7 @@
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
* THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $
|
||||
* $Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -102,7 +102,7 @@
|
||||
|
||||
#ifndef lint
|
||||
static const char rcsid[] =
|
||||
"$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $";
|
||||
"$Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $";
|
||||
#endif
|
||||
|
||||
static struct sk_type sk_devs[] = {
|
||||
@ -175,7 +175,7 @@ static device_method_t sk_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sk_driver = {
|
||||
"sk",
|
||||
"skc",
|
||||
sk_methods,
|
||||
sizeof(struct sk_softc)
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user