| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Mapping of DWARF debug register numbers into register names. |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2010 Will Deacon, ARM Ltd. |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 8 | | - * published by the Free Software Foundation. |
|---|
| 9 | 6 | */ |
|---|
| 10 | 7 | |
|---|
| 11 | 8 | #include <errno.h> |
|---|
| .. | .. |
|---|
| 14 | 11 | #include <dwarf-regs.h> |
|---|
| 15 | 12 | #include <linux/ptrace.h> /* for struct user_pt_regs */ |
|---|
| 16 | 13 | #include <linux/stringify.h> |
|---|
| 17 | | -#include "util.h" |
|---|
| 18 | 14 | |
|---|
| 19 | 15 | struct pt_regs_dwarfnum { |
|---|
| 20 | 16 | const char *name; |
|---|