diff options
| author | Duncan Barclay <dmlb@FreeBSD.org> | 2000-04-24 15:49:20 +0000 |
|---|---|---|
| committer | Duncan Barclay <dmlb@FreeBSD.org> | 2000-04-24 15:49:20 +0000 |
| commit | 049629c406f865f987fea4e91e34245646fd1be6 (patch) | |
| tree | 653a185a727feb6e455f4c3d77031b3cecaf6b55 /sys | |
| parent | d4f3c0d870d1412c2cf1ba15fae5d2072ed2c109 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/ray/if_ray.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ray/if_ray.c b/sys/dev/ray/if_ray.c index 4082bda650da7..6c6847b6a8458 100644 --- a/sys/dev/ray/if_ray.c +++ b/sys/dev/ray/if_ray.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ray.c,v 1.17 2000/04/04 06:43:30 dmlb Exp $ + * $Id: if_ray.c,v 1.23 2000/04/24 15:19:40 dmlb Exp $ * */ @@ -2351,7 +2351,7 @@ ray_intr(struct pccard_devinfo *dev_p) else if (ccsi <= RAY_RCS_LAST) ray_intr_rcs(sc, cmd, ccs); else - RAY_PRINTF(sc, "bad ccs index 0x%02x\n", ccsi); + RAY_PRINTF(sc, "bad ccs index 0x%x\n", ccsi); } if (count) @@ -3163,11 +3163,11 @@ ray_com_runq(struct ray_softc *sc) * XXX network code itself. ray_stop should have prevented this * XXX command from running? * - * XXX also what about sc->sc_gone? + * XXX also what about sc->sc_gone and sc->sc_havenet? */ ifp = &sc->arpcom.ac_if; if (!(ifp->if_flags & IFF_RUNNING)) - RAY_PANIC(sc, "!IFF_RUNNING"); + RAY_PANIC(sc, "not running"); com->c_flags |= RAY_COM_FRUNNING; RAY_COM_DUMP(sc, com, "running"); |
