vserver 1.9.5.x5
[linux-2.6.git] / sound / core / ioctl32 / seq32.c
index 19c12ce..c349fea 100644 (file)
@@ -42,13 +42,14 @@ struct sndrv_seq_port_info32 {
 
        u32 kernel;                     /* reserved for kernel use (must be NULL) */
        u32 flags;              /* misc. conditioning */
-       char reserved[60];              /* for future use */
+       unsigned char time_queue;       /* queue # for timestamping */
+       char reserved[59];              /* for future use */
 };
 
 #define CVT_sndrv_seq_port_info()\
 {\
        COPY(addr);\
-       memcpy(dst->name, src->name, sizeof(dst->name));\
+       COPY_ARRAY(name);\
        COPY(capability);\
        COPY(type);\
        COPY(midi_channels);\
@@ -57,6 +58,7 @@ struct sndrv_seq_port_info32 {
        COPY(read_use);\
        COPY(write_use);\
        COPY(flags);\
+       COPY(time_queue);\
 }
 
 DEFINE_ALSA_IOCTL(seq_port_info);