GNU Linux-libre 4.14.332-gnu1
[releases.git] / tools / perf / trace / beauty / sndrv_pcm_ioctl.sh
1 #!/bin/sh
2
3 sound_header_dir=$1
4
5 printf "static const char *sndrv_pcm_ioctl_cmds[] = {\n"
6 grep "^#define[\t ]\+SNDRV_PCM_IOCTL_" $sound_header_dir/asound.h | \
7         sed -r 's/^#define +SNDRV_PCM_IOCTL_([A-Z0-9_]+)[\t ]+_IO[RW]*\( *.A., *(0x[[:xdigit:]]+),?.*/\t[\2] = \"\1\",/g'
8 printf "};\n"