Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment