=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sndiod/dev.h,v retrieving revision 1.33 retrieving revision 1.34 diff -c -r1.33 -r1.34 *** src/usr.bin/sndiod/dev.h 2021/01/29 10:55:19 1.33 --- src/usr.bin/sndiod/dev.h 2021/01/29 11:21:00 1.34 *************** *** 1,4 **** ! /* $OpenBSD: dev.h,v 1.33 2021/01/29 10:55:19 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov * --- 1,4 ---- ! /* $OpenBSD: dev.h,v 1.34 2021/01/29 11:21:00 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov * *************** *** 114,131 **** unsigned int id; /* process id */ }; - struct opt { - struct opt *next; - #define OPT_NAMEMAX 11 - char name[OPT_NAMEMAX + 1]; - int maxweight; /* max dynamic range for clients */ - int pmin, pmax; /* play channels */ - int rmin, rmax; /* recording channels */ - int mmc; /* true if MMC control enabled */ - int dup; /* true if join/expand enabled */ - int mode; /* bitmap of MODE_XXX */ - }; - /* * subset of channels of a stream */ --- 114,119 ---- *************** *** 171,177 **** struct dev { struct dev *next; struct slot *slot_list; /* audio streams attached */ - struct opt *opt_list; struct midi *midi; /* --- 159,164 ----