Add a struct shared by all unit and terminal descriptors.

This commit is contained in:
augustss 2002-09-22 23:21:30 +00:00
parent 9859bd8412
commit 83ef67ef1d
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uaudioreg.h,v 1.9 2002/07/11 21:14:27 augustss Exp $ */
/* $NetBSD: uaudioreg.h,v 1.10 2002/09/22 23:21:30 augustss Exp $ */
/*
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -126,6 +126,14 @@ struct usb_audio_cluster {
uByte iChannelNames;
} UPACKED;
/* Shared by all units and terminals */
struct usb_audio_unit {
uByte bLength;
uByte bDescriptorType;
uByte bDescriptorSubtype;
uByte bUnitId;
};
/* UDESCSUB_AC_INPUT */
struct usb_audio_input_terminal {
uByte bLength;