Commit 014018e0b4f7edc3f7f73ef780f7d6680c70861c

Authored by Noam Camus
Committed by Linus Torvalds
1 parent 955837d8f5

ARC: [mm] Fix compilation breakage

Structure name and variable name were erroneously interchanged

Signed-off-by: Noam Camus <noamc@ezchip.com>
Acked-by: Vineet Gupta <vgupta@synopsys.com>
[ Also removed pointless cast from "void *".  - Linus ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arc/mm/cache_arc700.c
... ... @@ -427,7 +427,7 @@
427 427  
428 428 static void __ic_line_inv_vaddr_helper(void *info)
429 429 {
430   - struct ic_inv *ic_inv_args = (struct ic_inv_args *) info;
  430 + struct ic_inv_args *ic_inv = info;
431 431  
432 432 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
433 433 }