diff options
| author | Mark Brown <broonie@kernel.org> | 2025-06-25 18:27:47 +0300 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-06-25 18:27:47 +0300 |
| commit | 51c18d4d8860d2e87c73423a42daa10add8a682b (patch) | |
| tree | 0c81da83a4240d51ee95a565b72e6b3461d8047f /rust/helpers/completion.c | |
| parent | b28ecd86069d22ea44b1e60eb423f9173a50151d (diff) | |
| parent | 68fbc70ece40139380380dce74059afa592846b3 (diff) | |
| download | linux-51c18d4d8860d2e87c73423a42daa10add8a682b.tar.xz | |
ASoC: Standardize ASoC menu
Merge series from Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>:
Current Kconfig menu at [ALSA for SoC audio support] has no rules.
So, some venders are using menu style, some venders are listed each drivers
on top page, etc. It is difficult to find target vender and/or drivers
because it is very random.
Let's standardize ASoC menu, like below
--- ALSA for SoC audio support
Analog Devices --->
AMD --->
Apple --->
Atmel --->
Au1x ----
Broadcom --->
Cirrus Logic --->
DesignWare --->
Freescale --->
Google --->
Hisilicon --->
...
One concern is *vender folder* alphabetical order vs *vender name*
alphabetical order were different. For example "sunxi" menu is
"Allwinner".
Link: https://lore.kernel.org/r/8734c8bf3l.wl-kuninori.morimoto.gx@renesas.com
Diffstat (limited to 'rust/helpers/completion.c')
| -rw-r--r-- | rust/helpers/completion.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/helpers/completion.c b/rust/helpers/completion.c new file mode 100644 index 000000000000..b2443262a2ae --- /dev/null +++ b/rust/helpers/completion.c @@ -0,0 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include <linux/completion.h> + +void rust_helper_init_completion(struct completion *x) +{ + init_completion(x); +} |
