Deleted Added
full compact
puc.c (102751) puc.c (102893)
1/* $NetBSD: puc.c,v 1.7 2000/07/29 17:43:38 jlam Exp $ */
2
3/*-
4 * Copyright (c) 2002 JF Hay. All rights reserved.
5 * Copyright (c) 2000 M. Warner Losh. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

53 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
54 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
55 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
56 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
57 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
58 */
59
60#include <sys/cdefs.h>
1/* $NetBSD: puc.c,v 1.7 2000/07/29 17:43:38 jlam Exp $ */
2
3/*-
4 * Copyright (c) 2002 JF Hay. All rights reserved.
5 * Copyright (c) 2000 M. Warner Losh. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

53 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
54 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
55 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
56 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
57 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
58 */
59
60#include <sys/cdefs.h>
61__FBSDID("$FreeBSD: head/sys/dev/puc/puc.c 102751 2002-09-01 01:59:38Z jmallett $");
61__FBSDID("$FreeBSD: head/sys/dev/puc/puc.c 102893 2002-09-03 11:18:35Z phk $");
62
63/*
64 * PCI "universal" communication card device driver, glues com, lpt,
65 * and similar ports to PCI via bridge chip often much larger than
66 * the devices being glued.
67 *
68 * Author: Christopher G. Demetriou, May 14, 1998 (derived from NetBSD
69 * sys/dev/pci/pciide.c, revision 1.6).

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

107
108static void puc_intr(void *arg);
109
110static int puc_find_free_unit(char *);
111#ifdef PUC_DEBUG
112static void puc_print_resource_list(struct resource_list *);
113#endif
114
62
63/*
64 * PCI "universal" communication card device driver, glues com, lpt,
65 * and similar ports to PCI via bridge chip often much larger than
66 * the devices being glued.
67 *
68 * Author: Christopher G. Demetriou, May 14, 1998 (derived from NetBSD
69 * sys/dev/pci/pciide.c, revision 1.6).

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

107
108static void puc_intr(void *arg);
109
110static int puc_find_free_unit(char *);
111#ifdef PUC_DEBUG
112static void puc_print_resource_list(struct resource_list *);
113#endif
114
115devclass_t puc_devclass;
116
115static int
116puc_port_bar_index(struct puc_softc *sc, int bar)
117{
118 int i;
119
120 for (i = 0; i < PUC_MAX_BAR; i += 1) {
121 if (!sc->sc_bar_mappings[i].used)
122 break;

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

501 case PUC_IVAR_FREQ:
502 *result = pdev->serialfreq;
503 break;
504 default:
505 return (ENOENT);
506 }
507 return (0);
508}
117static int
118puc_port_bar_index(struct puc_softc *sc, int bar)
119{
120 int i;
121
122 for (i = 0; i < PUC_MAX_BAR; i += 1) {
123 if (!sc->sc_bar_mappings[i].used)
124 break;

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

503 case PUC_IVAR_FREQ:
504 *result = pdev->serialfreq;
505 break;
506 default:
507 return (ENOENT);
508 }
509 return (0);
510}
509
510devclass_t puc_devclass;
511