summaryrefslogtreecommitdiff
path: root/internal/ioriotng.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-02-18 12:57:28 +0000
committerPaul Buetow <paul@buetow.org>2024-02-18 12:57:28 +0000
commitd249eea1e4010b6f39d619b0968c7aa651dbc9f3 (patch)
tree0ad06bdb8503058b2fc10f7df57864ae75397492 /internal/ioriotng.go
parentcf95f467a7b382d932c85b516e1b9aae6b73d7f5 (diff)
add arch.go
Diffstat (limited to 'internal/ioriotng.go')
-rw-r--r--internal/ioriotng.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/internal/ioriotng.go b/internal/ioriotng.go
index 9b2aeb7..2892431 100644
--- a/internal/ioriotng.go
+++ b/internal/ioriotng.go
@@ -6,7 +6,6 @@ import (
"bytes"
"encoding/binary"
"fmt"
- "runtime"
"ioriotng/internal/debugfs"
"ioriotng/internal/flags"
@@ -114,14 +113,3 @@ func readRaw[T any](raw []byte, ev *T) *T {
}
return ev
}
-
-func ksymArch() string {
- switch runtime.GOARCH {
- case "amd64":
- return "x64"
- case "arm64":
- return "arm64"
- default:
- panic("unsupported architecture")
- }
-}