Take out calls to cam_sim_set_basexfer_speed(), the base transfer speed is

now returned in the path inquiry CCB.

Submitted by:	Nick Hibma <hibma@skylink.it>
This commit is contained in:
Kenneth D. Merry 1999-05-06 21:12:58 +00:00
parent 4ea5aa83d4
commit 169b302922
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46585
2 changed files with 1 additions and 5 deletions

View file

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: vpo.c,v 1.11 1999/01/10 12:04:55 nsouch Exp $
* $Id: vpo.c,v 1.12 1999/05/06 20:16:27 ken Exp $
*
*/
@ -187,7 +187,6 @@ vpoattach(struct ppb_device *dev)
return (0);
}
cam_sim_set_basexfer_speed(vpo->sim, 93/*kB/s*/);
if (xpt_bus_register(vpo->sim, /*bus*/0) != CAM_SUCCESS) {
cam_sim_free(vpo->sim, /*free_devq*/TRUE);
return (0);

View file

@ -644,9 +644,6 @@ umass_cam_attach(umass_softc_t *sc)
return(ENOMEM);
}
/* spec-ed sustainable xfer speed */
cam_sim_set_basexfer_speed(sc->sim, 700/*kb/s*/);
if(xpt_bus_register(sc->sim, 0) != CAM_SUCCESS) {
cam_sim_free(sc->sim, 1);
return(ENOMEM);