the softc sc_lock lockmgr lock is unused, so remove it.
authorthib <thib@openbsd.org>
Thu, 24 Jul 2008 19:03:08 +0000 (19:03 +0000)
committerthib <thib@openbsd.org>
Thu, 24 Jul 2008 19:03:08 +0000 (19:03 +0000)
ok krw@, dlg@

sys/dev/ic/twe.c
sys/dev/ic/twevar.h

index a6f8c79..5b00863 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: twe.c,v 1.28 2007/10/20 16:10:09 krw Exp $    */
+/*     $OpenBSD: twe.c,v 1.29 2008/07/24 19:03:08 thib Exp $   */
 
 /*
  * Copyright (c) 2000-2002 Michael Shalayeff.  All rights reserved.
@@ -181,8 +181,6 @@ twe_attach(sc)
        TAILQ_INIT(&sc->sc_free_ccb);
        TAILQ_INIT(&sc->sc_done_ccb);
 
-       lockinit(&sc->sc_lock, PWAIT, "twelk", 0, 0);
-
        pa = sc->sc_cmdmap->dm_segs[0].ds_addr +
            sizeof(struct twe_cmd) * (TWE_MAXCMDS - 1);
        for (cmd = (struct twe_cmd *)sc->sc_cmds + TWE_MAXCMDS - 1;
index 5ffce90..b0e0f48 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: twevar.h,v 1.7 2005/09/15 05:33:39 krw Exp $  */
+/*     $OpenBSD: twevar.h,v 1.8 2008/07/24 19:03:08 thib Exp $ */
 
 /*
  * Copyright (c) 2000 Michael Shalayeff
@@ -52,7 +52,6 @@ struct twe_softc {
        struct device   sc_dev;
        void            *sc_ih;
        struct scsi_link sc_link;
-       struct lock     sc_lock;
        struct proc     *sc_thread;
        int             sc_thread_on;