ath79/mikrotik: use routerbootpart partitions
[oweals/openwrt.git] / target / linux / layerscape / patches-5.4 / 701-net-0102-sdk_fman-share-the-event-interrupt.patch
1 From 078d5cda5fc94e1d40d8d44bc4a0067341f02e72 Mon Sep 17 00:00:00 2001
2 From: Yangbo Lu <yangbo.lu@nxp.com>
3 Date: Thu, 1 Nov 2018 12:10:59 +0800
4 Subject: [PATCH] sdk_fman: share the event interrupt
5
6 This patch is to share fman event interrupt because
7 the 1588 timer driver will also use this interrupt.
8
9 Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
10 ---
11  drivers/net/ethernet/freescale/sdk_fman/src/wrapper/lnxwrp_fm.c | 2 +-
12  1 file changed, 1 insertion(+), 1 deletion(-)
13
14 --- a/drivers/net/ethernet/freescale/sdk_fman/src/wrapper/lnxwrp_fm.c
15 +++ b/drivers/net/ethernet/freescale/sdk_fman/src/wrapper/lnxwrp_fm.c
16 @@ -883,7 +883,7 @@ static t_Error ConfigureFmDev(t_LnxWrpFm
17      if (unlikely(_errno < 0))
18          RETURN_ERROR(MAJOR, E_INVALID_STATE, ("can_request_irq() = %d", _errno));
19  #endif
20 -    _errno = devm_request_irq(p_LnxWrpFmDev->dev, p_LnxWrpFmDev->irq, fm_irq, 0, "fman", p_LnxWrpFmDev);
21 +    _errno = devm_request_irq(p_LnxWrpFmDev->dev, p_LnxWrpFmDev->irq, fm_irq, IRQF_SHARED, "fman", p_LnxWrpFmDev);
22      if (unlikely(_errno < 0))
23          RETURN_ERROR(MAJOR, E_INVALID_STATE, ("request_irq(%d) = %d", p_LnxWrpFmDev->irq, _errno));
24