summaryrefslogtreecommitdiffstats
path: root/tools/perf/trace/beauty/sndrv_pcm_ioctl.sh
blob: 6818392968b24f130f82896a41f65b15471458f0 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

[ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/sound/

printf "static const char *sndrv_pcm_ioctl_cmds[] = {\n"
grep "^#define[\t ]\+SNDRV_PCM_IOCTL_" $header_dir/asound.h | \
	sed -r 's/^#define +SNDRV_PCM_IOCTL_([A-Z0-9_]+)[\t ]+_IO[RW]*\( *.A., *(0x[[:xdigit:]]+),?.*/\t[\2] = \"\1\",/g'
printf "};\n"