aboutsummaryrefslogtreecommitdiffstats
path: root/main/irqbalance/aarch64-fix.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2017-01-10 07:07:53 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-01-10 07:08:31 +0000
commitd1355b06501401526b2de756e75b7f50cf86c8bc (patch)
tree5c68152005ee08f69f547304f320ff536197bad8 /main/irqbalance/aarch64-fix.patch
parent00d4ee90b7d0433e58a842e06dc5950f7cec5435 (diff)
downloadaports-d1355b06501401526b2de756e75b7f50cf86c8bc.tar.bz2
aports-d1355b06501401526b2de756e75b7f50cf86c8bc.tar.xz
main/irqbalance: upgrade to 1.2.0
Diffstat (limited to 'main/irqbalance/aarch64-fix.patch')
-rw-r--r--main/irqbalance/aarch64-fix.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/main/irqbalance/aarch64-fix.patch b/main/irqbalance/aarch64-fix.patch
deleted file mode 100644
index 3e2c2092ba..0000000000
--- a/main/irqbalance/aarch64-fix.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 127caa1767312275925eac4f972f761a90fbee2a Mon Sep 17 00:00:00 2001
-From: Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
-Date: Tue, 15 Dec 2015 09:09:09 +0100
-Subject: [PATCH] Fix AArch64 support
-
-Signed-off-by: Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
----
- procinterrupts.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/procinterrupts.c b/procinterrupts.c
-index 63101d6..b70bfc2 100644
---- a/procinterrupts.c
-+++ b/procinterrupts.c
-@@ -80,7 +80,7 @@ static int check_platform_device(char *name, struct irq_info *info)
- rc = 0;
- goto out;
- } else if (!strncmp(ent->d_name, "net", strlen("net"))) {
-- info->IRQ_TYPE_LEGACY;
-+ info->type = IRQ_TYPE_LEGACY;
- info->class = IRQ_ETH;
- rc = 0;
- goto out;
-@@ -94,7 +94,7 @@ static int check_platform_device(char *name, struct irq_info *info)
-
- out:
- closedir(dirfd);
-- log(TO_ALL, LOG_DEBUG, "IRQ %s is of type %d and class %d\n", name, info->type, info->class)
-+ log(TO_ALL, LOG_DEBUG, "IRQ %s is of type %d and class %d\n", name, info->type, info->class);
- return rc;
-
- }