aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-omap2/gpmc.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c
index 7c122bb5498a..586dba7e5f23 100644
--- a/arch/arm/mach-omap2/gpmc.c
+++ b/arch/arm/mach-omap2/gpmc.c
@@ -441,22 +441,14 @@ static int gpmc_cs_mem_enabled(int cs)
441 return l & GPMC_CONFIG7_CSVALID; 441 return l & GPMC_CONFIG7_CSVALID;
442} 442}
443 443
444static int gpmc_cs_set_reserved(int cs, int reserved) 444static void gpmc_cs_set_reserved(int cs, int reserved)
445{ 445{
446 if (cs > GPMC_CS_NUM)
447 return -ENODEV;
448
449 gpmc_cs_map &= ~(1 << cs); 446 gpmc_cs_map &= ~(1 << cs);
450 gpmc_cs_map |= (reserved ? 1 : 0) << cs; 447 gpmc_cs_map |= (reserved ? 1 : 0) << cs;
451
452 return 0;
453} 448}
454 449
455static bool gpmc_cs_reserved(int cs) 450static bool gpmc_cs_reserved(int cs)
456{ 451{
457 if (cs > GPMC_CS_NUM)
458 return true;
459
460 return gpmc_cs_map & (1 << cs); 452 return gpmc_cs_map & (1 << cs);
461} 453}
462 454