size_t record_size;
        int dump_oops;
        bool ecc;
-       unsigned int count;
-       unsigned int max_count;
-       unsigned int read_count;
+       unsigned int max_dump_cnt;
+       unsigned int dump_write_cnt;
+       unsigned int dump_read_cnt;
        struct pstore_info pstore;
 };
 
 {
        struct ramoops_context *cxt = psi->data;
 
-       cxt->read_count = 0;
+       cxt->dump_read_cnt = 0;
        return 0;
 }
 
        struct ramoops_context *cxt = psi->data;
        struct persistent_ram_zone *prz;
 
-       if (cxt->read_count >= cxt->max_count)
+       if (cxt->dump_read_cnt >= cxt->max_dump_cnt)
                return -EINVAL;
 
-       *id = cxt->read_count++;
+       *id = cxt->dump_read_cnt++;
        prz = cxt->przs[*id];
 
        /* Only supports dmesg output so far. */
                                size_t size, struct pstore_info *psi)
 {
        struct ramoops_context *cxt = psi->data;
-       struct persistent_ram_zone *prz = cxt->przs[cxt->count];
+       struct persistent_ram_zone *prz = cxt->przs[cxt->dump_write_cnt];
        size_t hlen;
 
        /* Currently ramoops is designed to only store dmesg dumps. */
                size = prz->buffer_size - hlen;
        persistent_ram_write(prz, cxt->pstore.buf, size);
 
-       cxt->count = (cxt->count + 1) % cxt->max_count;
+       cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
 
        return 0;
 }
 {
        struct ramoops_context *cxt = psi->data;
 
-       if (id >= cxt->max_count)
+       if (id >= cxt->max_dump_cnt)
                return -EINVAL;
 
        persistent_ram_free_old(cxt->przs[id]);
        /* Only a single ramoops area allowed at a time, so fail extra
         * probes.
         */
-       if (cxt->max_count)
+       if (cxt->max_dump_cnt)
                goto fail_out;
 
        if (!pdata->mem_size || !pdata->record_size) {
                goto fail_out;
        }
 
-       cxt->max_count = pdata->mem_size / pdata->record_size;
-       cxt->count = 0;
+       cxt->max_dump_cnt = pdata->mem_size / pdata->record_size;
+       cxt->dump_read_cnt = 0;
        cxt->size = pdata->mem_size;
        cxt->phys_addr = pdata->mem_address;
        cxt->record_size = pdata->record_size;
        cxt->dump_oops = pdata->dump_oops;
        cxt->ecc = pdata->ecc;
 
-       cxt->przs = kzalloc(sizeof(*cxt->przs) * cxt->max_count, GFP_KERNEL);
+       cxt->przs = kzalloc(sizeof(*cxt->przs) * cxt->max_dump_cnt, GFP_KERNEL);
        if (!cxt->przs) {
                err = -ENOMEM;
                dev_err(dev, "failed to initialize a prz array\n");
                goto fail_out;
        }
 
-       for (i = 0; i < cxt->max_count; i++) {
+       for (i = 0; i < cxt->max_dump_cnt; i++) {
                size_t sz = cxt->record_size;
                phys_addr_t start = cxt->phys_addr + sz * i;
 
 
        pr_info("attached 0x%lx@0x%llx (%ux0x%zx), ecc: %s\n",
                cxt->size, (unsigned long long)cxt->phys_addr,
-               cxt->max_count, cxt->record_size,
+               cxt->max_dump_cnt, cxt->record_size,
                ramoops_ecc ? "on" : "off");
 
        return 0;
        kfree(cxt->pstore.buf);
 fail_clear:
        cxt->pstore.bufsize = 0;
-       cxt->max_count = 0;
+       cxt->max_dump_cnt = 0;
 fail_przs:
        for (i = 0; cxt->przs[i]; i++)
                persistent_ram_free(cxt->przs[i]);
 
        iounmap(cxt->virt_addr);
        release_mem_region(cxt->phys_addr, cxt->size);
-       cxt->max_count = 0;
+       cxt->max_dump_cnt = 0;
 
        /* TODO(kees): When pstore supports unregistering, call it here. */
        kfree(cxt->pstore.buf);