cregit-Linux how code gets into the kernel

Release 4.11 arch/arm/mach-footbridge/dma.c

/*
 *  linux/arch/arm/kernel/dma-ebsa285.c
 *
 *  Copyright (C) 1998 Phil Blundell
 *
 * DMA functions specific to EBSA-285/CATS architectures
 *
 *  Changelog:
 *   09-Nov-1998 RMK    Split out ISA DMA functions to dma-isa.c
 *   17-Mar-1999 RMK    Allow any EBSA285-like architecture to have
 *                      ISA DMA controllers.
 */
#include <linux/init.h>
#include <linux/io.h>
#include <linux/spinlock.h>
#include <linux/scatterlist.h>

#include <asm/dma.h>

#include <asm/mach/dma.h>
#include <asm/hardware/dec21285.h>

#if 0
static int fb_dma_request(unsigned int chan, dma_t *dma)
{
        return -EINVAL;
}

static void fb_dma_enable(unsigned int chan, dma_t *dma)
{
}

static void fb_dma_disable(unsigned int chan, dma_t *dma)
{
}

static struct dma_ops fb_dma_ops = {
        .type           = "fb",
        .request        = fb_dma_request,
        .enable         = fb_dma_enable,
        .disable        = fb_dma_disable,
};
#endif


static int __init fb_dma_init(void) { #if 0 dma[_DC21285_DMA(0)].d_ops = &fb_dma_ops; dma[_DC21285_DMA(1)].d_ops = &fb_dma_ops; #endif #ifdef CONFIG_ISA_DMA if (footbridge_cfn_mode()) isa_init_dma(); #endif return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2374.19%375.00%
Russell King825.81%125.00%
Total31100.00%4100.00%

core_initcall(fb_dma_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4265.62%545.45%
Russell King2031.25%545.45%
Christoph Hellwig23.12%19.09%
Total64100.00%11100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.