diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2023-02-15 23:07:53 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2023-02-15 23:51:58 +0200 |
commit | 22188b42bd6fb969ee1880b2a09589f65d11a62c (patch) | |
tree | 6a45cc903a71e7ab8dcdb8bc2354485819ef27ec /utils/irqbalance/Makefile | |
parent | 51634a960c8bd22fce5870462011cea6fbf4f0bc (diff) |
irqbalance: Add upstream fix for AARCH64 irq name parsing
Add upstream fix for AARCH64 irq name parsing.
> On arm64 SoCs like TI's K3 SoC and few other SoCs,
> IRQ names don't get parsed correct due to which they
> end up being classified into wrong class. Fix this by
> considering last token to contain IRQ name always.
The fix seems to enable e.g. RT3200 to notice a few more
interrupts and start balancing them.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'utils/irqbalance/Makefile')
-rw-r--r-- | utils/irqbalance/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/irqbalance/Makefile b/utils/irqbalance/Makefile index 164e32a4e..903900e75 100644 --- a/utils/irqbalance/Makefile +++ b/utils/irqbalance/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=irqbalance PKG_VERSION:=1.9.2 -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/Irqbalance/irqbalance.git |