diff options
author | Takashi Iwai <tiwai@suse.de> | 2025-01-07 16:56:32 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2025-01-07 17:34:48 +0100 |
commit | feeeebaabf93af3ccc3a2cc4488058d239779f34 (patch) | |
tree | cec75c2221a165a758021468b8fe54c641be54df | |
parent | b7d67e713b505d9c0d317bf3253dc507c8aabdf0 (diff) |
ALSA: sonicvibes: Simplify with str_off_on()
Use the standard helper str_off_on() to simplify the code.
Only code refactoring, no behavior change.
Link: https://patch.msgid.link/20250107155641.4435-3-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/sonicvibes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index e510715a6c95..c30eaf1038e7 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c @@ -1118,7 +1118,7 @@ static void snd_sonicvibes_proc_read(struct snd_info_entry *entry, tmp = sonic->srs_space & 0x0f; snd_iprintf(buffer, "SRS 3D : %s\n", - sonic->srs_space & 0x80 ? "off" : "on"); + str_off_on(sonic->srs_space & 0x80)); snd_iprintf(buffer, "SRS Space : %s\n", tmp == 0x00 ? "100%" : tmp == 0x01 ? "75%" : |