The branch main has been updated by christos:

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

commit 41ff4177614562923a30e2541e2a15883a4ce32c
Author:     Christos Margiolis <chris...@freebsd.org>
AuthorDate: 2024-10-18 08:39:15 +0000
Commit:     Christos Margiolis <chris...@freebsd.org>
CommitDate: 2024-10-18 08:39:15 +0000

    sound: Fix indendation in sound_modevent() switch statement
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      2 days
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D46856
---
 sys/dev/sound/pcm/sound.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c
index f9c87facfeec..330c99de14d1 100644
--- a/sys/dev/sound/pcm/sound.c
+++ b/sys/dev/sound/pcm/sound.c
@@ -836,20 +836,20 @@ sound_modevent(module_t mod, int type, void *data)
 
        ret = 0;
        switch (type) {
-               case MOD_LOAD:
-                       pcm_devclass = devclass_create("pcm");
-                       pcmsg_unrhdr = new_unrhdr(1, INT_MAX, NULL);
-                       break;
-               case MOD_UNLOAD:
-                       if (pcmsg_unrhdr != NULL) {
-                               delete_unrhdr(pcmsg_unrhdr);
-                               pcmsg_unrhdr = NULL;
-                       }
-                       break;
-               case MOD_SHUTDOWN:
-                       break;
-               default:
-                       ret = ENOTSUP;
+       case MOD_LOAD:
+               pcm_devclass = devclass_create("pcm");
+               pcmsg_unrhdr = new_unrhdr(1, INT_MAX, NULL);
+               break;
+       case MOD_UNLOAD:
+               if (pcmsg_unrhdr != NULL) {
+                       delete_unrhdr(pcmsg_unrhdr);
+                       pcmsg_unrhdr = NULL;
+               }
+               break;
+       case MOD_SHUTDOWN:
+               break;
+       default:
+               ret = ENOTSUP;
        }
 
        return ret;

Reply via email to