/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_TASK_WORK_H #define _LINUX_TASK_WORK_H #include #include typedef void (*task_work_func_t)(struct callback_head *); static inline void init_task_work(struct callback_head *twork, task_work_func_t func) { twork->func = func; } int task_work_add(struct task_struct *task, struct callback_head *twork, bool); struct callback_head *task_work_cancel(struct task_struct *, task_work_func_t); void task_work_run(void); static inline void exit_task_work(struct task_struct *task) { task_work_run(); } #endif /* _LINUX_TASK_WORK_H */ /td> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-01-21ASoC: max*: sync parameter naming (rate/sample_bits)Kuninori Morimoto
2020-11-26ASoC: max9867: skip of_device_id table when !CONFIG_OFKrzysztof Kozlowski
2020-08-27ASoC: max9867: shutdown codec when changing filter typePavel Dobias
2020-07-16ASoC: codecs: max*: merge .digital_mute() into .mute_stream()Kuninori Morimoto
2020-06-01Merge remote-tracking branch 'asoc/for-5.8' into asoc-linusMark Brown
2020-05-22ASoC: max9867: keep ADCs and DACs always onPavel Dobias
2020-05-22ASoC: max9867: add digital microphone controlsPavel Dobias
2020-05-20ASoC: max9867: add mono playback switchPavel Dobias
2020-05-20ASoC: max9867: add filter controlsPavel Dobias
2020-05-20ASoC: max9867: don't use regmap defaultsPavel Dobias
2020-05-20ASoC: max9867: fix ADC level controlPavel Dobias
2020-05-18ASoC: max9867: fix volume controlsPavel Dobias
2018-12-07ASoC: max9867: Add copyright and module authorLadislav Michl
2018-12-07ASoC: max9867: Fix signal pathsLadislav Michl
2018-12-07ASoC: max9867: Calculate LRCLK dividerLadislav Michl
2018-12-07ASoC: max9867: Fix power managementLadislav Michl
2018-12-07ASoC: max9867: Remove useless assignmentLadislav Michl
2018-11-26ASoC: max9867: Fix whitespaceLadislav Michl
2018-03-02ASoC: max9867: Drop probe functionLadislav Michl
2018-03-02Merge branch 'topic/wm9867' of https://git.kernel.org/pub/scm/linux/kernel/gi...Mark Brown
2018-03-01ASoC: max9867: DSP modeLadislav Michl
2018-03-01ASoC: max9867: Fix codec capabilitiesLadislav Michl
2018-03-01ASoC: max9867: Improve error loggingLadislav Michl
2018-02-12ASoC: wm9867: replace codec to componentKuninori Morimoto
2017-08-18ASoC: codecs: constify snd_soc_dai_ops structuresArvind Yadav
2017-08-10ASoC: codecs: add const to snd_soc_codec_driver structuresBhumika Goyal
2017-06-22ASoC: max9867: make array ni_div static constColin Ian King
2017-04-30Merge remote-tracking branches 'asoc/topic/max9878', 'asoc/topic/max98927', '...Mark Brown
2017-04-05ASoC: max9867: export OF device ID as module aliasesJavier Martinez Canillas