Deleted Added
full compact
ncr.c (170872) ncr.c (201758)
1/**************************************************************************
2**
3**
4** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
5**
6**-------------------------------------------------------------------------
7**
8** Written for 386bsd and FreeBSD by

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

35** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38**
39***************************************************************************
40*/
41
42#include <sys/cdefs.h>
1/**************************************************************************
2**
3**
4** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
5**
6**-------------------------------------------------------------------------
7**
8** Written for 386bsd and FreeBSD by

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

35** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38**
39***************************************************************************
40*/
41
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: head/sys/pci/ncr.c 170872 2007-06-17 05:55:54Z scottl $");
43__FBSDID("$FreeBSD: head/sys/pci/ncr.c 201758 2010-01-07 21:01:37Z mbr $");
44
45
46#define NCR_DATE "pl30 98/1/1"
47
48#define NCR_VERSION (2)
49#define MAX_UNITS (16)
50
51#define NCR_GETCC_WITHMSG

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

3987 }
3988
3989 switch (nego) {
3990 case NS_SYNC:
3991 msgptr[msglen++] = MSG_EXTENDED;
3992 msgptr[msglen++] = MSG_EXT_SDTR_LEN;
3993 msgptr[msglen++] = MSG_EXT_SDTR;
3994 msgptr[msglen++] = tp->tinfo.goal.period;
44
45
46#define NCR_DATE "pl30 98/1/1"
47
48#define NCR_VERSION (2)
49#define MAX_UNITS (16)
50
51#define NCR_GETCC_WITHMSG

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

3987 }
3988
3989 switch (nego) {
3990 case NS_SYNC:
3991 msgptr[msglen++] = MSG_EXTENDED;
3992 msgptr[msglen++] = MSG_EXT_SDTR_LEN;
3993 msgptr[msglen++] = MSG_EXT_SDTR;
3994 msgptr[msglen++] = tp->tinfo.goal.period;
3995 msgptr[msglen++] = tp->tinfo.goal.offset;;
3995 msgptr[msglen++] = tp->tinfo.goal.offset;
3996 if (DEBUG_FLAGS & DEBUG_NEGO) {
3997 PRINT_ADDR(ccb);
3998 printf ("sync msgout: ");
3999 ncr_show_msg (&cp->scsi_smsg [msglen-5]);
4000 printf (".\n");
4001 };
4002 break;
4003 case NS_WIDE:

--- 3152 unchanged lines hidden ---
3996 if (DEBUG_FLAGS & DEBUG_NEGO) {
3997 PRINT_ADDR(ccb);
3998 printf ("sync msgout: ");
3999 ncr_show_msg (&cp->scsi_smsg [msglen-5]);
4000 printf (".\n");
4001 };
4002 break;
4003 case NS_WIDE:

--- 3152 unchanged lines hidden ---