dma-g2.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | dma-g2.c (ff4a7481c3898ffc3cc271d6aca431d190c37247) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * arch/sh/drivers/dma/dma-g2.c 3 * 4 * G2 bus DMA support 5 * 6 * Copyright (C) 2003 - 2006 Paul Mundt | 2/* 3 * arch/sh/drivers/dma/dma-g2.c 4 * 5 * G2 bus DMA support 6 * 7 * Copyright (C) 2003 - 2006 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 <asm/cacheflush.h> 17#include <mach/sysasic.h> 18#include <mach/dma.h> --- 173 unchanged lines hidden (view full) --- 192 unregister_dmac(&g2_dma_info); 193} 194 195subsys_initcall(g2_dma_init); 196module_exit(g2_dma_exit); 197 198MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>"); 199MODULE_DESCRIPTION("G2 bus 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 <asm/cacheflush.h> 14#include <mach/sysasic.h> 15#include <mach/dma.h> --- 173 unchanged lines hidden (view full) --- 189 unregister_dmac(&g2_dma_info); 190} 191 192subsys_initcall(g2_dma_init); 193module_exit(g2_dma_exit); 194 195MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>"); 196MODULE_DESCRIPTION("G2 bus DMA driver"); |
200MODULE_LICENSE("GPL"); | 197MODULE_LICENSE("GPL v2"); |