diff options
| author | Takashi Iwai <tiwai@suse.de> | 2025-09-28 15:41:17 +0200 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2025-09-28 15:41:17 +0200 |
| commit | 6b9c4a05ae2b539bfd4d64a46eb861a57cc08351 (patch) | |
| tree | c49eff979f954601be17f603d8bebb9ec8256c1e /tools/lib | |
| parent | a767d3583d4e800d6a2d0378d7e57513bb4d4bba (diff) | |
| parent | f8b9c819ea20d1101656a91ced843d9e47ba0630 (diff) | |
| download | linux-6b9c4a05ae2b539bfd4d64a46eb861a57cc08351.tar.gz linux-6b9c4a05ae2b539bfd4d64a46eb861a57cc08351.zip | |
Merge tag 'asoc-v6.18-2' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v6.18 round 2
Some more updates for v6.18, mostly fixes for the earlier pull request
with some cleanups and more minor fixes for older code. We do have one
new driver, the TI TAS2783A, and some quirks for new platforms.
Diffstat (limited to 'tools/lib')
| -rw-r--r-- | tools/lib/subcmd/help.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/lib/subcmd/help.c b/tools/lib/subcmd/help.c index 9ef569492560..ddaeb4eb3e24 100644 --- a/tools/lib/subcmd/help.c +++ b/tools/lib/subcmd/help.c @@ -75,6 +75,9 @@ void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) size_t ci, cj, ei; int cmp; + if (!excludes->cnt) + return; + ci = cj = ei = 0; while (ci < cmds->cnt && ei < excludes->cnt) { cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name); |
