sndrv_ctl_ioctl.sh 332 B

12345678
  1. #!/bin/sh
  2. [ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/sound/
  3. printf "static const char *sndrv_ctl_ioctl_cmds[] = {\n"
  4. grep "^#define[\t ]\+SNDRV_CTL_IOCTL_" $header_dir/asound.h | \
  5. sed -r 's/^#define +SNDRV_CTL_IOCTL_([A-Z0-9_]+)[\t ]+_IO[RW]*\( *.U., *(0x[[:xdigit:]]+),?.*/\t[\2] = \"\1\",/g'
  6. printf "};\n"