repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git]
/
tools
/
perf
/
trace
/
beauty
/
sndrv_ctl_ioctl.sh
blob
aad5ab130539987db15336b233d50a3d03ef4082
1
#!/bin/sh
2
3
sound_header_dir
=
$1
4
5
printf
"static const char *sndrv_ctl_ioctl_cmds[] = {
\n
"
6
grep
"^#define[
\t
]\+SNDRV_CTL_IOCTL_"
$sound_header_dir
/
asound.h | \
7
sed
-r
's/^#define +SNDRV_CTL_IOCTL_([A-Z0-9_]+)[
\t
]+_IO[RW]*\( *.U., *(0x[[:xdigit:]]+),?.*/
\t
[\2] =
\"
\1
\"
,/g'
8
printf
"};
\n
"