Merge branch kvm-arm64/pmu-fixes-6.2 into kvmarm-master/fixes
[linux-2.6-microblaze.git] / tools / perf / trace / beauty / kcmp_type.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: LGPL-2.1
3
4 [ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/
5
6 printf "static const char *kcmp_types[] = {\n"
7 regex='^[[:space:]]+(KCMP_(\w+)),'
8 grep -E $regex ${header_dir}/kcmp.h | grep -v KCMP_TYPES, | \
9         sed -r "s/$regex/\1 \2/g" | \
10         xargs printf "\t[%s]\t= \"%s\",\n"
11 printf "};\n"