https://github.com/torvalds/linux
Revision c3879956957b8de9fd6cbad604e668fd00c6506c authored by Vinod Koul on 29 June 2015, 16:36:46 UTC, committed by Mark Brown on 06 August 2015, 11:33:56 UTC
The topology file manifest should include a private data field. This
allows vendors to specify vendor data in the manifest, like
timestamps, hashes, additional information for removing platform
configuration out of drivers and making these configurable per platform

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 6dc6db7
Raw File
Tip revision: c3879956957b8de9fd6cbad604e668fd00c6506c authored by Vinod Koul on 29 June 2015, 16:36:46 UTC
ASoC: topology: add private data to manifest
Tip revision: c387995
smpboot.h
#ifndef SMPBOOT_H
#define SMPBOOT_H

struct task_struct;

#ifdef CONFIG_GENERIC_SMP_IDLE_THREAD
struct task_struct *idle_thread_get(unsigned int cpu);
void idle_thread_set_boot_cpu(void);
void idle_threads_init(void);
#else
static inline struct task_struct *idle_thread_get(unsigned int cpu) { return NULL; }
static inline void idle_thread_set_boot_cpu(void) { }
static inline void idle_threads_init(void) { }
#endif

int smpboot_create_threads(unsigned int cpu);
void smpboot_park_threads(unsigned int cpu);
void smpboot_unpark_threads(unsigned int cpu);

#endif
back to top