···11-/*22- * linux/arch/arm/mach-clps711x/dma.c33- *44- * Copyright (C) 2000 Deep Blue Solutions Ltd55- *66- * This program is free software; you can redistribute it and/or modify77- * it under the terms of the GNU General Public License as published by88- * the Free Software Foundation; either version 2 of the License, or99- * (at your option) any later version.1010- *1111- * This program is distributed in the hope that it will be useful,1212- * but WITHOUT ANY WARRANTY; without even the implied warranty of1313- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1414- * GNU General Public License for more details.1515- *1616- * You should have received a copy of the GNU General Public License1717- * along with this program; if not, write to the Free Software1818- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA1919- */2020-#include <linux/init.h>2121-2222-#include <asm/dma.h>2323-#include <asm/mach/dma.h>2424-2525-void __init arch_dma_init(dma_t *dma)2626-{2727-}
-28
arch/arm/mach-epxa10db/dma.c
···11-/*22- * linux/arch/arm/mach-epxa10db/dma.c33- *44- * Copyright (C) 1999 ARM Limited55- * Copyright (C) 2000 Deep Blue Solutions Ltd66- *77- * This program is free software; you can redistribute it and/or modify88- * it under the terms of the GNU General Public License as published by99- * the Free Software Foundation; either version 2 of the License, or1010- * (at your option) any later version.1111- *1212- * This program is distributed in the hope that it will be useful,1313- * but WITHOUT ANY WARRANTY; without even the implied warranty of1414- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1515- * GNU General Public License for more details.1616- *1717- * You should have received a copy of the GNU General Public License1818- * along with this program; if not, write to the Free Software1919- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA2020- */2121-#include <linux/init.h>2222-2323-#include <asm/dma.h>2424-#include <asm/mach/dma.h>2525-2626-void __init arch_dma_init(dma_t *dma)2727-{2828-}
-35
arch/arm/mach-integrator/dma.c
···11-/*22- * linux/arch/arm/mach-integrator/dma.c33- *44- * Copyright (C) 1999 ARM Limited55- * Copyright (C) 2000 Deep Blue Solutions Ltd66- *77- * This program is free software; you can redistribute it and/or modify88- * it under the terms of the GNU General Public License as published by99- * the Free Software Foundation; either version 2 of the License, or1010- * (at your option) any later version.1111- *1212- * This program is distributed in the hope that it will be useful,1313- * but WITHOUT ANY WARRANTY; without even the implied warranty of1414- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1515- * GNU General Public License for more details.1616- *1717- * You should have received a copy of the GNU General Public License1818- * along with this program; if not, write to the Free Software1919- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA2020- */2121-#include <linux/slab.h>2222-#include <linux/mman.h>2323-#include <linux/init.h>2424-2525-#include <asm/page.h>2626-#include <asm/pgtable.h>2727-#include <asm/dma.h>2828-#include <asm/io.h>2929-#include <asm/hardware.h>3030-3131-#include <asm/mach/dma.h>3232-3333-void __init arch_dma_init(dma_t *dma)3434-{3535-}