config SND_AOA_SOUNDBUS tristate "Apple Soundbus support" select SND_PCM ---help--- This option enables the generic driver for the soundbus support on Apple machines. It is required for the sound bus implementations. config SND_AOA_SOUNDBUS_I2S tristate "I2S bus support" depends on SND_AOA_SOUNDBUS && PCI ---help--- This option enables support for Apple I2S busses. plication/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Westerberg <mika.westerberg@linux.intel.com>2016-04-22 11:13:23 +0300
committerLen Brown <len.brown@intel.com>2016-12-01 01:33:16 -0500
commit01a67adfc5d73d24e999d9cf65b5b8a6687187b8 (patch)
tree810e3a6680f4cbe8db0c77383af18f352aca14b5
parent3d109de23c93e9196c370fd729fbd7ecf7371701 (diff)
tools/power turbostat: Allocate correct amount of fd and irq entries
The tool uses topo.max_cpu_num to determine number of entries needed for fd_percpu[] and irqs_per_cpu[]. For example on a system with 4 CPUs topo.max_cpu_num is 3 so we get too small array for holding per-CPU items. Fix this to use right number of entries, which is topo.max_cpu_num + 1. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--tools/power/x86/turbostat/turbostat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c