Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
platform-imx-dma.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010 Pengutronix
3  * Uwe Kleine-Koenig <[email protected]>
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 2 as published by the
7  * Free Software Foundation.
8  */
9 #include <mach/devices-common.h>
10 
12 {
13  return platform_device_register_resndata(&mxc_ahb_bus,
14  "imx-dma", -1, NULL, 0, NULL, 0);
15 }
16 
19 {
20  struct resource res[] = {
21  {
22  .start = iobase,
23  .end = iobase + SZ_16K - 1,
24  .flags = IORESOURCE_MEM,
25  }, {
26  .start = irq,
27  .end = irq,
28  .flags = IORESOURCE_IRQ,
29  },
30  };
31 
32  return platform_device_register_resndata(&mxc_ahb_bus, name,
33  -1, res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
34 }