Deleted Added
full compact
tdfx_pci.c (106578) tdfx_pci.c (108323)
1/*
2 * Copyright (c) 2000-2001 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-2001 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_pci.c 106578 2002-11-07 21:19:47Z jhb $
31 * $FreeBSD: head/sys/dev/tdfx/tdfx_pci.c 108323 2002-12-27 16:40:54Z rwatson $
32 */
33
34/* 3dfx driver for FreeBSD 4.x - Finished 11 May 2000, 12:25AM ET
35 *
36 * Copyright (C) 2000-2001, by Coleman Kane <cokane@FreeBSD.org>,
37 * based upon the 3dfx driver written for linux, by Daryll Straus, Jon Taylor,
38 * and Jens Axboe, located at http://linux.3dfx.com.
39 */

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

264
265 /*
266 * make_dev registers the cdev to access the 3dfx card from /dev
267 * use hex here for the dev num, simply to provide better support if > 10
268 * voodoo cards, for the mad. The user must set the link, or use MAKEDEV.
269 * Why would we want that many voodoo cards anyhow?
270 */
271 tdfx_info->devt = make_dev(&tdfx_cdev, device_get_unit(dev),
32 */
33
34/* 3dfx driver for FreeBSD 4.x - Finished 11 May 2000, 12:25AM ET
35 *
36 * Copyright (C) 2000-2001, by Coleman Kane <cokane@FreeBSD.org>,
37 * based upon the 3dfx driver written for linux, by Daryll Straus, Jon Taylor,
38 * and Jens Axboe, located at http://linux.3dfx.com.
39 */

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

264
265 /*
266 * make_dev registers the cdev to access the 3dfx card from /dev
267 * use hex here for the dev num, simply to provide better support if > 10
268 * voodoo cards, for the mad. The user must set the link, or use MAKEDEV.
269 * Why would we want that many voodoo cards anyhow?
270 */
271 tdfx_info->devt = make_dev(&tdfx_cdev, device_get_unit(dev),
272 0, 0, 02660, "3dfx%x", device_get_unit(dev));
272 UID_ROOT, GID_WHEEL, 0600, "3dfx%x", device_get_unit(dev));
273
274 return 0;
275}
276
277static int
278tdfx_detach(device_t dev) {
279 struct tdfx_softc* tdfx_info;
280 int retval;

--- 588 unchanged lines hidden ---
273
274 return 0;
275}
276
277static int
278tdfx_detach(device_t dev) {
279 struct tdfx_softc* tdfx_info;
280 int retval;

--- 588 unchanged lines hidden ---