Deleted Added
full compact
tdfx_vars.h (61989) tdfx_vars.h (63488)
1/*
2 * Copyright (c) 2000 by Coleman Kane <cokane@FreeBSD.org>
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

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

23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
1/*
2 * Copyright (c) 2000 by Coleman Kane <cokane@FreeBSD.org>
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

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

23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $FreeBSD: head/sys/dev/tdfx/tdfx_vars.h 61989 2000-06-23 05:54:01Z cokane $
31 * $FreeBSD: head/sys/dev/tdfx/tdfx_vars.h 63488 2000-07-19 05:41:14Z cokane $
32 */
33
34/* tdfx_vars.h -- constants and structs used in the tdfx driver
35 Copyright (C) 2000 by Coleman Kane <cokane@FreeBSD.org>
36*/
37#ifndef TDFX_VARS_H
38#define TDFX_VARS_H
39

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

73#define TDFX_IOC_TYPE_PIO 0
74#define TDFX_IOC_TYPE_QUERY '3'
75#define TDFX_IOC_QRY_BOARDS 2
76#define TDFX_IOC_QRY_FETCH 3
77#define TDFX_IOC_QRY_UPDATE 4
78
79struct tdfx_softc {
80 int cardno;
32 */
33
34/* tdfx_vars.h -- constants and structs used in the tdfx driver
35 Copyright (C) 2000 by Coleman Kane <cokane@FreeBSD.org>
36*/
37#ifndef TDFX_VARS_H
38#define TDFX_VARS_H
39

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

73#define TDFX_IOC_TYPE_PIO 0
74#define TDFX_IOC_TYPE_QUERY '3'
75#define TDFX_IOC_QRY_BOARDS 2
76#define TDFX_IOC_QRY_FETCH 3
77#define TDFX_IOC_QRY_UPDATE 4
78
79struct tdfx_softc {
80 int cardno;
81 vm_offset_t addr;
82 struct resource *memrange, *piorange;
83 int memrid, piorid;
81 vm_offset_t addr, addr2;
82 struct resource *memrange, *memrange2, *piorange;
83 int memrid, memrid2, piorid;
84 long range;
85 int vendor;
86 int type;
84 long range;
85 int vendor;
86 int type;
87 int addr0;
87 int addr0, addr1;
88 unsigned char bus;
89 unsigned char dv;
90 struct file *curFile;
91 device_t dev;
92 dev_t devt;
93 struct mem_range_desc mrdesc;
94 int busy;
95};
96
97struct tdfx_pio_data {
98 short port;
99 short size;
100 int device;
101 void *value;
102};
103
104#endif /* TDFX_VARS_H */
88 unsigned char bus;
89 unsigned char dv;
90 struct file *curFile;
91 device_t dev;
92 dev_t devt;
93 struct mem_range_desc mrdesc;
94 int busy;
95};
96
97struct tdfx_pio_data {
98 short port;
99 short size;
100 int device;
101 void *value;
102};
103
104#endif /* TDFX_VARS_H */