aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/gpmc.c
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2012-10-09 17:02:14 -0400
committerOlof Johansson <olof@lixom.net>2012-10-09 18:00:54 -0400
commit125c9671794a0d4b49d51a925aa8190f1d5d2168 (patch)
tree7638e8506fbef5523772062e55e352faa3a0f463 /arch/arm/mach-omap2/gpmc.c
parentbfbad32a63fa6287723961f07bcd043dc9c5965c (diff)
parent224cd7115abb5b05a5d665551452c271449ce80b (diff)
Merge tag 'omap-for-v3.7-rc1/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into fixes
From Tony Lindgren: This branch contains one counter locking fix and an alignment fix. Other fixes are warning fixes, fixes for return value checks. I've also included removal of some extra semicolons, dropping of some duplicate includes, and an a change for wl12xx enumeration that are not strictly fixes but would be good to get out of the way for -rc1. * tag 'omap-for-v3.7-rc1/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: arm/omap: Replace board_ref_clock with enum values ARM: OMAP2+: remove duplicated include from board-omap3stalker.c arch/arm/plat-omap/omap-pm-noop.c: Remove unecessary semicolon arch/arm/mach-omap2: Remove unecessary semicolon arch/arm/mach-omap1/devices.c: Remove unecessary semicolon AM35xx: Add missing hwmod entry for the HDQ/1-Wire present in AM3505/3517 CPUs. ARM: OMAP2+: gpmc: annotate exit sections properly ARM: OMAP: fix return value check in realtime_counter_init() ARM: OMAP: hsmmc: fix return value check in omap_hsmmc_init_one() OMAPDSS: fix return value check in create_dss_pdev() ARM: OMAP2+: Add am335x evm and bone targets to common Makefile arm: increase FORCE_MAX_ZONEORDER for TI AM33XX ARM: OMAP: OMAP_DEBUG_LEDS needs to select LEDS_CLASS ARM: OMAP: rx51: Fix a section mismatch warn ARM: OMAP2+: Round of the carve out memory requested to section_size ARM: OMAP: counter: add locking to read_persistent_clock
Diffstat (limited to 'arch/arm/mach-omap2/gpmc.c')
-rw-r--r--arch/arm/mach-omap2/gpmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c
index 8ab1e1bde5e9..5ac5cf30406a 100644
--- a/arch/arm/mach-omap2/gpmc.c
+++ b/arch/arm/mach-omap2/gpmc.c
@@ -838,7 +838,7 @@ static int gpmc_setup_irq(void)
838 return request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL); 838 return request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL);
839} 839}
840 840
841static __exit int gpmc_free_irq(void) 841static __devexit int gpmc_free_irq(void)
842{ 842{
843 int i; 843 int i;
844 844
@@ -944,7 +944,7 @@ static __devinit int gpmc_probe(struct platform_device *pdev)
944 return 0; 944 return 0;
945} 945}
946 946
947static __exit int gpmc_remove(struct platform_device *pdev) 947static __devexit int gpmc_remove(struct platform_device *pdev)
948{ 948{
949 gpmc_free_irq(); 949 gpmc_free_irq();
950 gpmc_mem_exit(); 950 gpmc_mem_exit();