gl-mifi-mcu: make compatible with newer kernel (fix #21198)

Signed-off-by: Nuno Gonçalves <nunojpg@gmail.com>
This commit is contained in:
Nuno Gonçalves 2023-05-28 22:06:35 +01:00 committed by Nuno Goncalves
parent bd8f4926df
commit 9536d28384
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=gl-mifi-mcu
PKG_VERSION:=1
PKG_VERSION:=2
PKG_RELEASE:=1
PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>

View File

@ -54,13 +54,13 @@ static const struct file_operations hello_proc_ops = {
};
#endif
static irq_handler_t handle_rx_start(unsigned int irq, void* device, struct pt_regs* registers)
static irqreturn_t handle_rx_start(int irq, void* device)
{
if (rx_bit_index == -1)
{
hrtimer_start(&timer_rx, ktime_set(0, period / 2), HRTIMER_MODE_REL);
}
return (irq_handler_t) IRQ_HANDLED;
return IRQ_HANDLED;
}
static enum hrtimer_restart handle_tx(struct hrtimer* timer)
@ -178,7 +178,7 @@ static int __init gl_mifi_mcu_init(void)
success &= request_irq(
gpio_to_irq(gpio_rx),
(irq_handler_t) handle_rx_start,
handle_rx_start,
IRQF_TRIGGER_FALLING,
"gl_mifi_mcu_irq_handler",
NULL) == 0;