dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* <linux/usb/audio.h> -- USB Audio definitions.
|
|
*
|
|
* Copyright (C) 2006 Thumtronics Pty Ltd.
|
|
* Developed for Thumtronics by Grey Innovation
|
|
* Ben Williamson <ben.williamson@greyinnovation.com>
|
|
*
|
|
* This file holds USB constants and structures defined
|
|
* by the USB Device Class Definition for Audio Devices.
|
|
* Comments below reference relevant sections of that document:
|
|
*
|
|
* http://www.usb.org/developers/devclass_docs/audio10.pdf
|
|
*
|
|
* Types and defines in this file are either specific to version 1.0 of
|
|
* this standard or common for newer versions.
|
|
*/
|
|
#ifndef __LINUX_USB_AUDIO_H
|
|
#define __LINUX_USB_AUDIO_H
|
|
|
|
#include <uapi/linux/usb/audio.h>
|
|
|
|
|
|
struct usb_audio_control {
|
|
struct list_head list;
|
|
const char *name;
|
|
u8 type;
|
|
int data[5];
|
|
int (*set)(struct usb_audio_control *con, u8 cmd, int value);
|
|
int (*get)(struct usb_audio_control *con, u8 cmd);
|
|
};
|
|
|
|
struct usb_audio_control_selector {
|
|
struct list_head list;
|
|
struct list_head control;
|
|
u8 id;
|
|
const char *name;
|
|
u8 type;
|
|
struct usb_descriptor_header *desc;
|
|
};
|
|
|
|
#endif /* __LINUX_USB_AUDIO_H */
|