xmphy.c (9a54cbb95d8a5426fb78adb9bad555383f1c74d4) | xmphy.c (50aa106108cc9a610e4bdee7c7fe614a8c425c18) |
---|---|
1/* 2 * Copyright (c) 2000 3 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 25 unchanged lines hidden (view full) --- 34__FBSDID("$FreeBSD$"); 35 36/* 37 * driver for the XaQti XMAC II's internal PHY. This is sort of 38 * like a 10/100 PHY, except the only thing we're really autoselecting 39 * here is full/half duplex. Speed is always 1000mbps. 40 */ 41 | 1/* 2 * Copyright (c) 2000 3 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 25 unchanged lines hidden (view full) --- 34__FBSDID("$FreeBSD$"); 35 36/* 37 * driver for the XaQti XMAC II's internal PHY. This is sort of 38 * like a 10/100 PHY, except the only thing we're really autoselecting 39 * here is full/half duplex. Speed is always 1000mbps. 40 */ 41 |
42#include <sys/cdefs.h> 43__FBSDID("$FreeBSD$"); 44 | |
45#include <sys/param.h> 46#include <sys/systm.h> 47#include <sys/kernel.h> 48#include <sys/socket.h> 49#include <sys/bus.h> 50 51#include <net/if.h> 52#include <net/if_media.h> --- 293 unchanged lines hidden --- | 42#include <sys/param.h> 43#include <sys/systm.h> 44#include <sys/kernel.h> 45#include <sys/socket.h> 46#include <sys/bus.h> 47 48#include <net/if.h> 49#include <net/if_media.h> --- 293 unchanged lines hidden --- |