dma-pvr2.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) dma-pvr2.c (ff4a7481c3898ffc3cc271d6aca431d190c37247)
1// SPDX-License-Identifier: GPL-2.0
1/*
2 * arch/sh/drivers/dma/dma-pvr2.c
3 *
4 * NEC PowerVR 2 (Dreamcast) DMA support
5 *
6 * Copyright (C) 2003, 2004 Paul Mundt
2/*
3 * arch/sh/drivers/dma/dma-pvr2.c
4 *
5 * NEC PowerVR 2 (Dreamcast) DMA support
6 *
7 * Copyright (C) 2003, 2004 Paul Mundt
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/interrupt.h>
16#include <mach/sysasic.h>
17#include <mach/dma.h>
18#include <asm/dma.h>

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

100 unregister_dmac(&pvr2_dma_info);
101}
102
103subsys_initcall(pvr2_dma_init);
104module_exit(pvr2_dma_exit);
105
106MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
107MODULE_DESCRIPTION("NEC PowerVR 2 DMA driver");
8 */
9#include <linux/init.h>
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/interrupt.h>
13#include <mach/sysasic.h>
14#include <mach/dma.h>
15#include <asm/dma.h>

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

97 unregister_dmac(&pvr2_dma_info);
98}
99
100subsys_initcall(pvr2_dma_init);
101module_exit(pvr2_dma_exit);
102
103MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
104MODULE_DESCRIPTION("NEC PowerVR 2 DMA driver");
108MODULE_LICENSE("GPL");
105MODULE_LICENSE("GPL v2");