]> Zhao Yanbai Git Server - minix.git/commitdiff
padconf: remove duplicate code. 59/659/2
authorThomas Cort <tcort@minix3.org>
Wed, 19 Jun 2013 11:00:44 +0000 (07:00 -0400)
committerGerrit Code Review <gerrit@gerrit>
Fri, 21 Jun 2013 14:10:58 +0000 (16:10 +0200)
The same code block was repeated twice (copy & paste error).

Change-Id: I2035c9fff46b3f0a52084c2d6c871bbda6f8f07f

lib/libpadconf/padconf.c

index c1b4d80a7430f7fe7eb5e6551feb1cc439487c0f..e25de226a0385d1049e505ac67b8ef29a3040f58 100644 (file)
@@ -42,22 +42,6 @@ padconf_init()
                log_trace(&log, "Called %d times\n", use_count);
                return OK;
        }
-       mr.mr_base = PADCONF_REGISTERS_BASE;
-       mr.mr_limit = PADCONF_REGISTERS_BASE + 0x1000;
-
-       if (sys_privctl(SELF, SYS_PRIV_ADD_MEM, &mr) != 0) {
-               log_warn(&log, "Unable to request permission to map memory\n");
-               return EPERM;
-       }
-
-       base =
-           (uint32_t) vm_map_phys(SELF, (void *) PADCONF_REGISTERS_BASE,
-           0x1000);
-
-       if (base == (uint32_t) MAP_FAILED) {
-               log_warn(&log, "Unable to map GPIO memory\n");
-               return EPERM;
-       }
 
        mr.mr_base = PADCONF_REGISTERS_BASE;
        mr.mr_limit = PADCONF_REGISTERS_BASE + 0x1000;