Deleted Added
full compact
scsi_sa.c (47625) scsi_sa.c (47640)
1/*
1/*
2 * $Id: scsi_sa.c,v 1.26 1999/05/25 23:10:54 mjacob Exp $
2 * $Id: scsi_sa.c,v 1.27 1999/05/30 16:51:07 phk Exp $
3 *
4 * Implementation of SCSI Sequential Access Peripheral driver for CAM.
5 *
6 * Copyright (c) 1997 Justin T. Gibbs
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

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

1143 xpt_free_path(path);
1144 }
1145
1146 if (status != CAM_REQ_CMP) {
1147 printf("sa: Failed to attach master async callback "
1148 "due to status 0x%x!\n", status);
1149 } else {
1150 /* If we were successfull, register our devsw */
3 *
4 * Implementation of SCSI Sequential Access Peripheral driver for CAM.
5 *
6 * Copyright (c) 1997 Justin T. Gibbs
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

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

1143 xpt_free_path(path);
1144 }
1145
1146 if (status != CAM_REQ_CMP) {
1147 printf("sa: Failed to attach master async callback "
1148 "due to status 0x%x!\n", status);
1149 } else {
1150 /* If we were successfull, register our devsw */
1151 cdevsw_add_generic(SA_BDEV_MAJOR, SA_CDEV_MAJOR, &sa_cdevsw);
1151 cdevsw_add(&sa_cdevsw);
1152 }
1153}
1154
1155static void
1156saoninvalidate(struct cam_periph *periph)
1157{
1158 struct sa_softc *softc;
1159 struct buf *q_bp;

--- 2101 unchanged lines hidden ---
1152 }
1153}
1154
1155static void
1156saoninvalidate(struct cam_periph *periph)
1157{
1158 struct sa_softc *softc;
1159 struct buf *q_bp;

--- 2101 unchanged lines hidden ---