dma-api.c (c74a7469f97c0f40b46e82ee979f9fb1bb6e847c) dma-api.c (ff4a7481c3898ffc3cc271d6aca431d190c37247)
1// SPDX-License-Identifier: GPL-2.0
1/*
2 * arch/sh/drivers/dma/dma-api.c
3 *
4 * SuperH-specific DMA management API
5 *
6 * Copyright (C) 2003, 2004, 2005 Paul Mundt
2/*
3 * arch/sh/drivers/dma/dma-api.c
4 *
5 * SuperH-specific DMA management API
6 *
7 * Copyright (C) 2003, 2004, 2005 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/module.h>
14#include <linux/spinlock.h>
15#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
17#include <linux/list.h>
18#include <linux/platform_device.h>

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

412{
413 printk(KERN_NOTICE "DMA: Registering DMA API.\n");
414 return proc_create_single("dma", 0, NULL, dma_proc_show) ? 0 : -ENOMEM;
415}
416subsys_initcall(dma_api_init);
417
418MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
419MODULE_DESCRIPTION("DMA API for SuperH");
8 */
9#include <linux/init.h>
10#include <linux/module.h>
11#include <linux/spinlock.h>
12#include <linux/proc_fs.h>
13#include <linux/seq_file.h>
14#include <linux/list.h>
15#include <linux/platform_device.h>

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

409{
410 printk(KERN_NOTICE "DMA: Registering DMA API.\n");
411 return proc_create_single("dma", 0, NULL, dma_proc_show) ? 0 : -ENOMEM;
412}
413subsys_initcall(dma_api_init);
414
415MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
416MODULE_DESCRIPTION("DMA API for SuperH");
420MODULE_LICENSE("GPL");
417MODULE_LICENSE("GPL v2");