Commit c90d345f authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab

V4L/DVB (13773): [Mantis] Enable all interrupts

Signed-off-by: default avatarManu Abraham <manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 57841322
...@@ -182,9 +182,14 @@ int mantis_hif_init(struct mantis_ca *ca) ...@@ -182,9 +182,14 @@ int mantis_hif_init(struct mantis_ca *ca)
init_waitqueue_head(&ca->hif_data_wq); init_waitqueue_head(&ca->hif_data_wq);
init_waitqueue_head(&ca->hif_opdone_wq); init_waitqueue_head(&ca->hif_opdone_wq);
irqcfg = mmread(MANTIS_GPIF_IRQCFG); irqcfg = mmread(MANTIS_GPIF_IRQCFG);
irqcfg |= MANTIS_MASK_BRRDY; irqcfg = MANTIS_MASK_BRRDY |
irqcfg |= MANTIS_MASK_WRACK; MANTIS_MASK_WRACK |
MANTIS_MASK_EXTIRQ |
MANTIS_MASK_WSTO |
MANTIS_MASK_OTHERR |
MANTIS_MASK_OVFLW;
mmwrite(irqcfg, MANTIS_GPIF_IRQCFG); mmwrite(irqcfg, MANTIS_GPIF_IRQCFG);
return 0; return 0;
......
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