Deleted Added
full compact
if_vx.c (36735) if_vx.c (37618)
1/*
2 * Copyright (c) 1994 Herb Peyerl <hpeyerl@novatel.ca>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
1/*
2 * Copyright (c) 1994 Herb Peyerl <hpeyerl@novatel.ca>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $Id: if_vx.c,v 1.16 1998/02/21 05:35:02 gpalmer Exp $
30 * $Id: if_vx.c,v 1.17 1998/06/07 17:09:51 dfr Exp $
31 *
32 */
33
34/*
35 * Created from if_ep.c driver by Fred Gray (fgray@rice.edu) to support
36 * the 3c590 family.
37 */
38

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

322 }
323 GO_WINDOW(3);
324 sc->vx_connector = (inl(BASE + VX_W3_INTERNAL_CFG)
325 & INTERNAL_CONNECTOR_MASK)
326 >> INTERNAL_CONNECTOR_BITS;
327 if (sc->vx_connector & 0x10) {
328 sc->vx_connector &= 0x0f;
329 printf("[*%s*]", conn_tab[sc->vx_connector].name);
31 *
32 */
33
34/*
35 * Created from if_ep.c driver by Fred Gray (fgray@rice.edu) to support
36 * the 3c590 family.
37 */
38

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

322 }
323 GO_WINDOW(3);
324 sc->vx_connector = (inl(BASE + VX_W3_INTERNAL_CFG)
325 & INTERNAL_CONNECTOR_MASK)
326 >> INTERNAL_CONNECTOR_BITS;
327 if (sc->vx_connector & 0x10) {
328 sc->vx_connector &= 0x0f;
329 printf("[*%s*]", conn_tab[sc->vx_connector].name);
330 printf(": disable 'auto select' with DOS util!", sc->unit);
330 printf(": disable 'auto select' with DOS util!");
331 } else {
332 printf("[*%s*]", conn_tab[sc->vx_connector].name);
333 }
334}
335
336static void
337vxsetlink(sc)
338 struct vx_softc *sc;

--- 751 unchanged lines hidden ---
331 } else {
332 printf("[*%s*]", conn_tab[sc->vx_connector].name);
333 }
334}
335
336static void
337vxsetlink(sc)
338 struct vx_softc *sc;

--- 751 unchanged lines hidden ---