forked from Minki/linux
ab28e96fd1
Since we now have a gpiolib driver, remove this code: The gpio-etraxfs driver (along with things like gpio-keys-polled for polling support) replaces the GIO driver implementations in mach-a3 and mach-fs. The various generic external chip drivers replace the "virtual gpio" parts. The generic gpio-leds driver replaces the LED handling. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jesper Nilsson <jespern@axis.com>
26 lines
754 B
C
26 lines
754 B
C
#include <linux/module.h>
|
|
#include <linux/irq.h>
|
|
#include <arch/dma.h>
|
|
#include <arch/intmem.h>
|
|
#include <mach/pinmux.h>
|
|
|
|
/* Functions for allocating DMA channels */
|
|
EXPORT_SYMBOL(crisv32_request_dma);
|
|
EXPORT_SYMBOL(crisv32_free_dma);
|
|
|
|
/* Functions for handling internal RAM */
|
|
EXPORT_SYMBOL(crisv32_intmem_alloc);
|
|
EXPORT_SYMBOL(crisv32_intmem_free);
|
|
EXPORT_SYMBOL(crisv32_intmem_phys_to_virt);
|
|
EXPORT_SYMBOL(crisv32_intmem_virt_to_phys);
|
|
|
|
/* Functions for handling pinmux */
|
|
EXPORT_SYMBOL(crisv32_pinmux_alloc);
|
|
EXPORT_SYMBOL(crisv32_pinmux_alloc_fixed);
|
|
EXPORT_SYMBOL(crisv32_pinmux_dealloc);
|
|
EXPORT_SYMBOL(crisv32_pinmux_dealloc_fixed);
|
|
|
|
/* Functions masking/unmasking interrupts */
|
|
EXPORT_SYMBOL(crisv32_mask_irq);
|
|
EXPORT_SYMBOL(crisv32_unmask_irq);
|