rlphy.c (a94100fa9b9ddccb74164cb9407e69fba557dbac) | rlphy.c (50aa106108cc9a610e4bdee7c7fe614a8c425c18) |
---|---|
1/* 2 * Copyright (c) 1997, 1998, 1999 3 * Bill Paul <wpaul@ctr.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 --- 23 unchanged lines hidden (view full) --- 32 33#include <sys/cdefs.h> 34__FBSDID("$FreeBSD$"); 35 36/* 37 * driver for RealTek 8139 internal PHYs 38 */ 39 | 1/* 2 * Copyright (c) 1997, 1998, 1999 3 * Bill Paul <wpaul@ctr.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 --- 23 unchanged lines hidden (view full) --- 32 33#include <sys/cdefs.h> 34__FBSDID("$FreeBSD$"); 35 36/* 37 * driver for RealTek 8139 internal PHYs 38 */ 39 |
40#include <sys/cdefs.h> 41__FBSDID("$FreeBSD$"); 42 | |
43#include <sys/param.h> 44#include <sys/systm.h> 45#include <sys/kernel.h> 46#include <sys/socket.h> 47#include <sys/bus.h> 48 49#include <net/if.h> 50#include <net/if_arp.h> --- 302 unchanged lines hidden --- | 40#include <sys/param.h> 41#include <sys/systm.h> 42#include <sys/kernel.h> 43#include <sys/socket.h> 44#include <sys/bus.h> 45 46#include <net/if.h> 47#include <net/if_arp.h> --- 302 unchanged lines hidden --- |