Deleted Added
full compact
if_ti.c (176413) if_ti.c (177626)
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

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

72 * - Raymond Lee of Netgear, for providing a pair of Netgear
73 * GA620 Tigon 2 boards for testing
74 * - Ulf Zimmermann, for bringing the GA260 to my attention and
75 * convincing me to write this driver.
76 * - Andrew Gallatin for providing FreeBSD/Alpha support.
77 */
78
79#include <sys/cdefs.h>
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

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

72 * - Raymond Lee of Netgear, for providing a pair of Netgear
73 * GA620 Tigon 2 boards for testing
74 * - Ulf Zimmermann, for bringing the GA260 to my attention and
75 * convincing me to write this driver.
76 * - Andrew Gallatin for providing FreeBSD/Alpha support.
77 */
78
79#include <sys/cdefs.h>
80__FBSDID("$FreeBSD: head/sys/dev/ti/if_ti.c 176413 2008-02-19 20:54:42Z remko $");
80__FBSDID("$FreeBSD: head/sys/dev/ti/if_ti.c 177626 2008-03-26 07:32:08Z brueffer $");
81
82#include "opt_ti.h"
83
84#include <sys/param.h>
85#include <sys/systm.h>
86#include <sys/sockio.h>
87#include <sys/mbuf.h>
88#include <sys/malloc.h>

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

3681 */
3682 case ALT_ATTACH:
3683 /*
3684 * From what I can tell, Alteon's Solaris Tigon driver
3685 * only has one character device, so you have to attach
3686 * to the Tigon board you're interested in. This seems
3687 * like a not-so-good way to do things, since unless you
3688 * subsequently specify the unit number of the device
81
82#include "opt_ti.h"
83
84#include <sys/param.h>
85#include <sys/systm.h>
86#include <sys/sockio.h>
87#include <sys/mbuf.h>
88#include <sys/malloc.h>

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

3681 */
3682 case ALT_ATTACH:
3683 /*
3684 * From what I can tell, Alteon's Solaris Tigon driver
3685 * only has one character device, so you have to attach
3686 * to the Tigon board you're interested in. This seems
3687 * like a not-so-good way to do things, since unless you
3688 * subsequently specify the unit number of the device
3689 * you're interested in in every ioctl, you'll only be
3689 * you're interested in every ioctl, you'll only be
3690 * able to debug one board at a time.
3691 */
3692 error = 0;
3693 break;
3694 case ALT_READ_TG_MEM:
3695 case ALT_WRITE_TG_MEM:
3696 {
3697 struct tg_mem *mem_param;

--- 194 unchanged lines hidden ---
3690 * able to debug one board at a time.
3691 */
3692 error = 0;
3693 break;
3694 case ALT_READ_TG_MEM:
3695 case ALT_WRITE_TG_MEM:
3696 {
3697 struct tg_mem *mem_param;

--- 194 unchanged lines hidden ---