git: 5abbbb7c6401 - stable/14 - sound: Remove leftover references to snd_clone

From: Christos Margiolis <christos_at_FreeBSD.org>
Date: Thu, 18 Apr 2024 12:40:00 UTC
The branch stable/14 has been updated by christos:

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

commit 5abbbb7c640185c50762ee216b19429e8f562938
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-04-13 17:12:27 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-04-18 12:39:41 +0000

    sound: Remove leftover references to snd_clone
    
    The snd_clone framework does not exist as of
    e8c0d15a64fadb4a330f2da7244becaac161bb70 ("sound: Get rid of snd_clone
    and use DEVFS_CDEVPRIV(9)"), so remove leftover references to it from
    unit.c.
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      2 months
    Reviewed by:    markj
    Differential Revision:  https://reviews.freebsd.org/D44758
    
    (cherry picked from commit 068c675ca7aec11d3546c3f908e842a7eca2ccae)
---
 sys/dev/sound/unit.c | 20 +++++---------------
 1 file changed, 5 insertions(+), 15 deletions(-)

diff --git a/sys/dev/sound/unit.c b/sys/dev/sound/unit.c
index 1f1b889b42ce..28ffbde1f7ec 100644
--- a/sys/dev/sound/unit.c
+++ b/sys/dev/sound/unit.c
@@ -44,24 +44,17 @@
  *
  * eg: dsp0.p1  - u=0, d=p, c=1
  *     dsp1.vp0 - u=1, d=vp, c=0
- *     dsp0.10  - u=0, d=clone, c=allocated clone (see further explanation)
  *
- * Maximum unit of soundcards can be tuned through "hw.snd.maxunit", which
- * is between SND_UNIT_UMIN (16) and SND_UNIT_UMAX (2048). By design,
- * maximum allowable allocated channel is 256, with exception for clone
- * devices which doesn't have any notion of channel numbering. The use of
- * channel numbering in a clone device is simply to provide uniqueness among
- * allocated clones. This also means that the maximum allowable clonable
- * device is largely dependant and dynamically tuned depending on
- * hw.snd.maxunit.
+ * Maximum unit of soundcards can be tuned through "hw.snd.maxunit", which is
+ * between SND_UNIT_UMIN (16) and SND_UNIT_UMAX (2048). By design, the maximum
+ * allowable allocated channel is 256.
  */
 
 /* Default width */
 static int snd_u_shift = 9;	/* 0 - 0x1ff :  512 distinct soundcards   */
 static int snd_d_shift = 5;	/* 0 - 0x1f  :   32 distinct device types */
 static int snd_c_shift = 10;	/* 0 - 0x3ff : 1024 distinct channels
-					       (256 limit "by design",
-					       except for clone devices)  */
+					       (256 limit "by design")	  */
 
 static int snd_unit_initialized = 0;
 
@@ -184,10 +177,7 @@ snd_unit_init(void)
 		    snd_u_shift++)
 			;
 
-		/*
-		 * Make room for channels/clones allocation unit
-		 * to fit within 24bit MAXMINOR limit.
-		 */
+		/* Make room for channels to fit within 24bit MAXMINOR limit. */
 		snd_c_shift = 24 - snd_u_shift - snd_d_shift;
 	}