video: rockchip: mpp: jpege: fix isr return value incorrect problem

The wrong value will make irq counter stop to increase at 200001, and
software takes more time to finish encoding.

Fixes: 53048fad2a ("video: rockchip: mpp: Add JPEG VPU720 driver")
Signed-off-by: Johnson Ding <johnson.ding@rock-chips.com>
Change-Id: Id98fcdc6d4e617e8dfba1bc6471295a14c48594b
This commit is contained in:
Johnson Ding
2024-04-26 18:45:17 +08:00
committed by Tao Huang
parent 61aaa35883
commit 12fd5673bd

View File

@@ -516,7 +516,7 @@ static int jpgenc_isr(struct mpp_dev *mpp)
mpp_debug_leave();
return 0;
return IRQ_HANDLED;
}
static int jpgenc_reset(struct mpp_dev *mpp)