staging: unisys: visorchipset: Use ioremap direction rather than heavy visor_memregion
authorJes Sorensen <Jes.Sorensen@redhat.com>
Tue, 5 May 2015 22:36:26 +0000 (18:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 May 2015 13:26:03 +0000 (15:26 +0200)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorbus/visorchipset.c

index 2be8514..9390ed6 100644 (file)
@@ -397,9 +397,7 @@ parser_init_guts(u64 addr, u32 bytes, bool local,
        int allocbytes = sizeof(struct parser_context) + bytes;
        struct parser_context *rc = NULL;
        struct parser_context *ctx = NULL;
-       struct memregion *rgn = NULL;
        struct spar_controlvm_parameters_header *phdr = NULL;
-       int cnt;
 
        if (retry)
                *retry = false;
@@ -438,18 +436,21 @@ parser_init_guts(u64 addr, u32 bytes, bool local,
                p = __va((unsigned long) (addr));
                memcpy(ctx->data, p, bytes);
        } else {
-               rgn = visor_memregion_create(addr, bytes);
-               if (!rgn) {
+               void __iomem *mapping;
+
+               if (!request_mem_region(addr, bytes, "visorchipset")) {
                        rc = NULL;
                        goto cleanup;
                }
-               cnt = visor_memregion_read(rgn, 0, ctx->data, bytes);
-               visor_memregion_destroy(rgn);
 
-               if (cnt < 0) {
+               mapping = ioremap_cache(addr, bytes);
+               if (!mapping) {
+                       release_mem_region(addr, bytes);
                        rc = NULL;
                        goto cleanup;
                }
+               memcpy_fromio(ctx->data, mapping, bytes);
+               release_mem_region(addr, bytes);
        }
        if (!standard_payload_header) {
                ctx->byte_stream = true;