soc: qcom: smp2p: Drop io-accessors
authorBjorn Andersson <bjorn.andersson@linaro.org>
Fri, 10 Jun 2016 00:22:57 +0000 (17:22 -0700)
committerAndy Gross <andy.gross@linaro.org>
Fri, 24 Jun 2016 18:34:00 +0000 (13:34 -0500)
SMEM is now mapped write-combine and we can use memcpy to access the
name of the entires.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
drivers/soc/qcom/smp2p.c

index 9c2788b8f2c381111ce7ea0259d02fbdfd72ac87..f51fb2ea72001adaf8aa0e0c78f2d0dd90f41710 100644 (file)
@@ -196,7 +196,7 @@ static irqreturn_t qcom_smp2p_intr(int irq, void *data)
        /* Match newly created entries */
        for (i = smp2p->valid_entries; i < in->valid_entries; i++) {
                list_for_each_entry(entry, &smp2p->inbound, node) {
-                       memcpy_fromio(buf, in->entries[i].name, sizeof(buf));
+                       memcpy(buf, in->entries[i].name, sizeof(buf));
                        if (!strcmp(buf, entry->name)) {
                                entry->value = &in->entries[i].value;
                                break;
@@ -343,7 +343,7 @@ static int qcom_smp2p_outbound_entry(struct qcom_smp2p *smp2p,
 
        /* Allocate an entry from the smem item */
        strlcpy(buf, entry->name, SMP2P_MAX_ENTRY_NAME);
-       memcpy_toio(out->entries[out->valid_entries].name, buf, SMP2P_MAX_ENTRY_NAME);
+       memcpy(out->entries[out->valid_entries].name, buf, SMP2P_MAX_ENTRY_NAME);
 
        /* Make the logical entry reference the physical value */
        entry->value = &out->entries[out->valid_entries].value;
This page took 0.033094 seconds and 5 git commands to generate.