From a613cacd4d19138ab405e254dfce4ccec33bad1e Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 20 Feb 2003 14:53:20 +0000 Subject: [PATCH] added the reserved and driver-data field for dsp loader structs. --- include/sound/asound.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sound/asound.h b/include/sound/asound.h index f4883cc4..6eda0c35 100644 --- a/include/sound/asound.h +++ b/include/sound/asound.h @@ -126,6 +126,7 @@ struct sndrv_hwdep_dsp_status { unsigned int num_dsps; /* R: number of DSP images to transfer */ unsigned int dsp_loaded; /* R: bit flags indicating the loaded DSPs */ unsigned int chip_ready; /* R: 1 = initialization finished */ + unsigned char reserved[16]; /* reserved for future use */ }; struct sndrv_hwdep_dsp_image { @@ -133,6 +134,7 @@ struct sndrv_hwdep_dsp_image { unsigned char name[64]; /* W: ID (e.g. file name) */ unsigned char *image; /* W: binary image */ size_t length; /* W: size of image in bytes */ + unsigned long driver_data; /* W: driver-specific data */ }; enum { -- 2.47.1