Deleted Added
full compact
isa_dma.c (136944) isa_dma.c (141391)
1/*-
2 * Copyright (c) 2004 Pyun YongHyeon.
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

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

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 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2004 Pyun YongHyeon.
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

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

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 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/sparc64/isa/isa_dma.c 136944 2004-10-25 10:29:57Z yongari $");
29__FBSDID("$FreeBSD: head/sys/sparc64/isa/isa_dma.c 141391 2005-02-06 13:46:39Z phk $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34
35#include <isa/isareg.h>
36#include <isa/isavar.h>
37

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

79
80int
81isa_dmastatus(int chan)
82{
83 return (0);
84}
85
86int
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34
35#include <isa/isareg.h>
36#include <isa/isavar.h>
37

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

79
80int
81isa_dmastatus(int chan)
82{
83 return (0);
84}
85
86int
87isa_dmatc(int chan)
88{
89 return (0);
90}
91
92int
87isa_dmastop(int chan)
88{
89 return (0);
90}
93isa_dmastop(int chan)
94{
95 return (0);
96}