pnphy.c (aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1) | pnphy.c (50aa106108cc9a610e4bdee7c7fe614a8c425c18) |
---|---|
1/* 2 * Copyright (c) 1997, 1998, 1999 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 --- 26 unchanged lines hidden (view full) --- 35 36/* 37 * Pseudo-driver for media selection on the Lite-On PNIC 82c168 38 * chip. The NWAY support on this chip is horribly broken, so we 39 * only support manual mode selection. This is lame, but getting 40 * NWAY to work right is amazingly difficult. 41 */ 42 | 1/* 2 * Copyright (c) 1997, 1998, 1999 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 --- 26 unchanged lines hidden (view full) --- 35 36/* 37 * Pseudo-driver for media selection on the Lite-On PNIC 82c168 38 * chip. The NWAY support on this chip is horribly broken, so we 39 * only support manual mode selection. This is lame, but getting 40 * NWAY to work right is amazingly difficult. 41 */ 42 |
43#include <sys/cdefs.h> 44__FBSDID("$FreeBSD$"); 45 | |
46#include <sys/param.h> 47#include <sys/systm.h> 48#include <sys/kernel.h> 49#include <sys/socket.h> 50#include <sys/errno.h> 51#include <sys/lock.h> 52#include <sys/module.h> 53#include <sys/mutex.h> --- 226 unchanged lines hidden --- | 43#include <sys/param.h> 44#include <sys/systm.h> 45#include <sys/kernel.h> 46#include <sys/socket.h> 47#include <sys/errno.h> 48#include <sys/lock.h> 49#include <sys/module.h> 50#include <sys/mutex.h> --- 226 unchanged lines hidden --- |