diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 20:36:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 20:36:29 -0400 |
commit | 0d19eac12031680dc5f5402921fb0c388e42f619 (patch) | |
tree | 57302fb8778b6527c35175cc1edf228dd9f7abb9 /drivers/dma | |
parent | 56c10bf82c10588b743e75a13a7949e11b9fc942 (diff) | |
parent | bba1594d348b59d6172e02bf74fba837c8273989 (diff) |
Merge branch 'amba' of git://git.linaro.org/people/rmk/linux-arm
Pull #2 ARM updates from Russell King:
"Further ARM AMBA primecell updates which aren't included directly in
the previous commit. I wanted to keep these separate as they're
touching stuff outside arch/arm/."
* 'amba' of git://git.linaro.org/people/rmk/linux-arm:
ARM: 7362/1: AMBA: Add module_amba_driver() helper macro for amba_driver
ARM: 7335/1: mach-u300: do away with MMC config files
ARM: 7280/1: mmc: mmci: Cache MMCICLOCK and MMCIPOWER register
ARM: 7309/1: realview: fix unconnected interrupts on EB11MP
ARM: 7230/1: mmc: mmci: Fix PIO read for small SDIO packets
ARM: 7227/1: mmc: mmci: Prepare for SDIO before setting up DMA job
ARM: 7223/1: mmc: mmci: Fixup use of runtime PM and use autosuspend
ARM: 7221/1: mmc: mmci: Change from using legacy suspend
ARM: 7219/1: mmc: mmci: Change vdd_handler to a generic ios_handler
ARM: 7218/1: mmc: mmci: Provide option to configure bus signal direction
ARM: 7217/1: mmc: mmci: Put power register deviations in variant data
ARM: 7216/1: mmc: mmci: Do not release spinlock in request_end
ARM: 7215/1: mmc: mmci: Increase max_segs from 16 to 128
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/pl330.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index b8ec03ee8e22..16b66c827f19 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c | |||
@@ -1035,18 +1035,7 @@ static struct amba_driver pl330_driver = { | |||
1035 | .remove = pl330_remove, | 1035 | .remove = pl330_remove, |
1036 | }; | 1036 | }; |
1037 | 1037 | ||
1038 | static int __init pl330_init(void) | 1038 | module_amba_driver(pl330_driver); |
1039 | { | ||
1040 | return amba_driver_register(&pl330_driver); | ||
1041 | } | ||
1042 | module_init(pl330_init); | ||
1043 | |||
1044 | static void __exit pl330_exit(void) | ||
1045 | { | ||
1046 | amba_driver_unregister(&pl330_driver); | ||
1047 | return; | ||
1048 | } | ||
1049 | module_exit(pl330_exit); | ||
1050 | 1039 | ||
1051 | MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>"); | 1040 | MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>"); |
1052 | MODULE_DESCRIPTION("API Driver for PL330 DMAC"); | 1041 | MODULE_DESCRIPTION("API Driver for PL330 DMAC"); |