%option prefix="perf_pmu_" %{ #include #include #include "pmu.h" #include "pmu-bison.h" static int value(int base) { long num; errno = 0; num = strtoul(perf_pmu_text, NULL, base); if (errno) return PP_ERROR; perf_pmu_lval.num = num; return PP_VALUE; } %} num_dec [0-9]+ %% {num_dec} { return value(10); } config { return PP_CONFIG; } config1 { return PP_CONFIG1; } config2 { return PP_CONFIG2; } - { return '-'; } : { return ':'; } , { return ','; } . { ; } \n { ; } %% int perf_pmu_wrap(void) { return 1; } '>
summaryrefslogtreecommitdiff
context:
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-22 12:45:47 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-22 12:45:47 -0800
commit24b86839fab8e8059d2b16e0067dc86a1a0d3514 (patch)
treed764e86e2bae3ef57779912ed062be725b1ca431 /net/appletalk/Makefile
parent585457fc8383e373ab923e46cd1f70bbfe46763f (diff)
parent0fec9557fd0c5349e3bd1a2141612a60bc20bb71 (diff)
Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull smp/hotplug fix from Thomas Gleixner: "Remove an unused variable which is a leftover from the notifier removal" * 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: cpu/hotplug: Remove unused but set variable in _cpu_down()
Diffstat (limited to 'net/appletalk/Makefile')