Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 014018e0 authored by Noam Camus's avatar Noam Camus Committed by Linus Torvalds
Browse files

ARC: [mm] Fix compilation breakage



Structure name and variable name were erroneously interchanged

Signed-off-by: default avatarNoam Camus <noamc@ezchip.com>
Acked-by: default avatarVineet Gupta <vgupta@synopsys.com>
[ Also removed pointless cast from "void *".  - Linus ]
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 955837d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -427,7 +427,7 @@ struct ic_inv_args {

static void __ic_line_inv_vaddr_helper(void *info)
{
        struct ic_inv *ic_inv_args = (struct ic_inv_args *) info;
        struct ic_inv_args *ic_inv = info;

        __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
}