Deleted Added
full compact
if_iso88025subr.c (193891) if_iso88025subr.c (194581)
1/*-
2 * Copyright (c) 1998, Larry Lile
3 * All rights reserved.
4 *
5 * For latest sources and information on this driver, please
6 * go to http://anarchy.stdio.com.
7 *
8 * Questions, comments or suggestions should be directed to

--- 16 unchanged lines hidden (view full) ---

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
1/*-
2 * Copyright (c) 1998, Larry Lile
3 * All rights reserved.
4 *
5 * For latest sources and information on this driver, please
6 * go to http://anarchy.stdio.com.
7 *
8 * Questions, comments or suggestions should be directed to

--- 16 unchanged lines hidden (view full) ---

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/net/if_iso88025subr.c 193891 2009-06-10 09:07:05Z bz $
33 * $FreeBSD: head/sys/net/if_iso88025subr.c 194581 2009-06-21 10:29:31Z rdivacky $
34 *
35 */
36
37/*
38 *
39 * General ISO 802.5 (Token Ring) support routines
40 *
41 */

--- 102 unchanged lines hidden (view full) ---

144 bpfdetach(ifp);
145
146 if_detach(ifp);
147
148 return;
149}
150
151int
34 *
35 */
36
37/*
38 *
39 * General ISO 802.5 (Token Ring) support routines
40 *
41 */

--- 102 unchanged lines hidden (view full) ---

144 bpfdetach(ifp);
145
146 if_detach(ifp);
147
148 return;
149}
150
151int
152iso88025_ioctl(struct ifnet *ifp, int command, caddr_t data)
152iso88025_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
153{
154 struct ifaddr *ifa;
155 struct ifreq *ifr;
156 int error;
157
158 ifa = (struct ifaddr *) data;
159 ifr = (struct ifreq *) data;
160 error = 0;

--- 669 unchanged lines hidden ---
153{
154 struct ifaddr *ifa;
155 struct ifreq *ifr;
156 int error;
157
158 ifa = (struct ifaddr *) data;
159 ifr = (struct ifreq *) data;
160 error = 0;

--- 669 unchanged lines hidden ---