Deleted Added
full compact
mlxvar.h (60938) mlxvar.h (69292)
1/*-
2 * Copyright (c) 1999 Michael Smith
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1999 Michael Smith
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/mlx/mlxvar.h 60938 2000-05-26 02:09:24Z jake $
26 * $FreeBSD: head/sys/dev/mlx/mlxvar.h 69292 2000-11-28 06:17:32Z mdodd $
27 */
28
29/*
30 * Debugging levels:
31 * 0 - quiet, only emit warnings
32 * 1 - noisy, emit major function points and things done
33 * 2 - extremely noisy, emit trace items in loops, etc.
34 */

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

104 * Per-controller structure.
105 */
106struct mlx_softc
107{
108 /* bus connections */
109 device_t mlx_dev;
110 dev_t mlx_dev_t;
111 struct resource *mlx_mem; /* mailbox interface window */
27 */
28
29/*
30 * Debugging levels:
31 * 0 - quiet, only emit warnings
32 * 1 - noisy, emit major function points and things done
33 * 2 - extremely noisy, emit trace items in loops, etc.
34 */

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

104 * Per-controller structure.
105 */
106struct mlx_softc
107{
108 /* bus connections */
109 device_t mlx_dev;
110 dev_t mlx_dev_t;
111 struct resource *mlx_mem; /* mailbox interface window */
112 int mlx_mem_rid;
113 int mlx_mem_type;
112 bus_space_handle_t mlx_bhandle; /* bus space handle */
113 bus_space_tag_t mlx_btag; /* bus space tag */
114 bus_dma_tag_t mlx_parent_dmat;/* parent DMA tag */
115 bus_dma_tag_t mlx_buffer_dmat;/* data buffer DMA tag */
116 struct resource *mlx_irq; /* interrupt */
117 void *mlx_intr; /* interrupt handle */
118
119 /* scatter/gather lists and their controller-visible mappings */

--- 126 unchanged lines hidden ---
114 bus_space_handle_t mlx_bhandle; /* bus space handle */
115 bus_space_tag_t mlx_btag; /* bus space tag */
116 bus_dma_tag_t mlx_parent_dmat;/* parent DMA tag */
117 bus_dma_tag_t mlx_buffer_dmat;/* data buffer DMA tag */
118 struct resource *mlx_irq; /* interrupt */
119 void *mlx_intr; /* interrupt handle */
120
121 /* scatter/gather lists and their controller-visible mappings */

--- 126 unchanged lines hidden ---