Commit 862e509b authored by Jayachandran C's avatar Jayachandran C Committed by John Crispin

MIPS: Netlogic: Fix interrupt table entry init

Used the hardware thread id passed in while writing to IRT in
nlm_pic_init_irt()
Signed-off-by: default avatarJayachandran C <jchandra@broadcom.com>
Patchwork: http://patchwork.linux-mips.org/patch/4465Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
parent b97215fd
......@@ -404,7 +404,7 @@ nlm_pic_ack(uint64_t base, int irt_num)
static inline void
nlm_pic_init_irt(uint64_t base, int irt, int irq, int hwt)
{
nlm_pic_write_irt_direct(base, irt, 0, 0, 0, irq, 0);
nlm_pic_write_irt_direct(base, irt, 0, 0, 0, irq, hwt);
}
extern uint64_t nlm_pic_base;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment