diff options
author | 2021-11-05 12:10:27 +0100 | |
---|---|---|
committer | 2021-11-05 12:10:27 +0100 | |
commit | 820e9906cf64142169134f35b996108303cf22ca (patch) | |
tree | 89f8831fb39c59aba208395d91e25ab4b26f473f /scripts/sorttable.c | |
parent | Merge branch 'for-5.16/apple' into for-linus (diff) | |
parent | HID: hid-asus.c: Maps key 0x35 (display off) to KEY_SCREENLOCK (diff) | |
download | wireguard-linux-820e9906cf64142169134f35b996108303cf22ca.tar.xz wireguard-linux-820e9906cf64142169134f35b996108303cf22ca.zip |
Merge branch 'for-5.16/asus' into for-linus
Diffstat (limited to 'scripts/sorttable.c')
-rw-r--r-- | scripts/sorttable.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/sorttable.c b/scripts/sorttable.c index 0ef3abfc4a51..6ee4fa882919 100644 --- a/scripts/sorttable.c +++ b/scripts/sorttable.c @@ -54,6 +54,10 @@ #define EM_ARCV2 195 #endif +#ifndef EM_RISCV +#define EM_RISCV 243 +#endif + static uint32_t (*r)(const uint32_t *); static uint16_t (*r2)(const uint16_t *); static uint64_t (*r8)(const uint64_t *); @@ -349,6 +353,7 @@ static int do_file(char const *const fname, void *addr) case EM_ARM: case EM_MICROBLAZE: case EM_MIPS: + case EM_RISCV: case EM_XTENSA: break; default: |