git: d6e54e538e83 - stable/14 - audio_soc: set "status" as being at simplebus

From: Andriy Gapon <avg_at_FreeBSD.org>
Date: Sat, 17 Feb 2024 15:12:19 UTC
The branch stable/14 has been updated by avg:

URL: https://cgit.FreeBSD.org/src/commit/?id=d6e54e538e833c88b0eaa1d391af6afc22b1b6b9

commit d6e54e538e833c88b0eaa1d391af6afc22b1b6b9
Author:     Andriy Gapon <avg@FreeBSD.org>
AuthorDate: 2022-01-11 12:28:48 +0000
Commit:     Andriy Gapon <avg@FreeBSD.org>
CommitDate: 2024-02-17 14:15:10 +0000

    audio_soc: set "status" as being at simplebus
    
    This is more true and less confusing than previous "at EXPERIMENT".
    
    (cherry picked from commit b587cb69f35cd7bd280fe1f8c82b37f56f10d5cf)
---
 sys/dev/sound/fdt/audio_soc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/sound/fdt/audio_soc.c b/sys/dev/sound/fdt/audio_soc.c
index c7f09e3787db..3e937720bb5b 100644
--- a/sys/dev/sound/fdt/audio_soc.c
+++ b/sys/dev/sound/fdt/audio_soc.c
@@ -408,7 +408,7 @@ audio_soc_init(void *arg)
 	pcm_addchan(sc->dev, PCMDIR_PLAY, &audio_soc_chan_class, &sc->play_channel);
 	pcm_addchan(sc->dev, PCMDIR_REC, &audio_soc_chan_class, &sc->rec_channel);
 
-	pcm_setstatus(sc->dev, "at EXPERIMENT");
+	pcm_setstatus(sc->dev, "at simplebus");
 
 	AUDIO_DAI_SETUP_INTR(sc->cpu_dev, audio_soc_intr, sc);
 	AUDIO_DAI_SETUP_MIXER(sc->codec_dev, sc->dev);