Ignore:
Timestamp:
Oct 18, 2007, 6:38:12 AM (18 years ago)
Author:
Brendan Oakley
Message:

Merged to ALSA 0.9.6

Location:
GPL/branches/alsa-resync1/alsa-kernel/include/sound
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/adriver.h

    r250 r262  
    116116#define minor(x) MINOR(x)
    117117#endif
     118#ifndef imajor
     119#define imajor(x) major((x)->i_rdev)
     120#endif
     121#ifndef iminor
     122#define iminor(x) minor((x)->i_rdev)
     123#endif
    118124#ifndef mk_kdev
    119125#define mk_kdev(maj, min) MKDEV(maj, min)
     
    128134#define need_resched() (current->need_resched)
    129135#endif
    130 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 4) && !defined TARGET_OS2
     136#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 4) && !defined(WE_ARE_WOLK) && !defined TARGET_OS2
    131137#include <linux/fs.h>
    132138static inline struct proc_dir_entry *PDE(const struct inode *inode)
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/compat_22.h

    r250 r262  
    280280};
    281281
    282 #ifndef PCI_OLD_SUSPEND
    283 #define PCI_OLD_SUSPEND
    284 #endif
    285 
    286282struct pci_driver {
    287283        struct list_head node;
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/hdsp.h

    r250 r262  
    6969
    7070struct _snd_hdsp_firmware {
    71         unsigned long firmware_data[24413];
     71        unsigned long *firmware_data;   /* 24413 long words */
    7272};
    7373
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/pcm_oss.h

    r260 r262  
    5252        size_t period_bytes;                    /* requested period size */
    5353        unsigned int periods;
    54         size_t buffer_bytes;                    /* requested period size */
     54        size_t buffer_bytes;                    /* requested buffer size */
    5555        size_t bytes;                           /* total # bytes processed */
    5656        size_t mmap_bytes;
    5757        char *buffer;                           /* vmallocated period */
    58         size_t buffer_used;                     /* used length from buffer */
     58        size_t buffer_used;                     /* used length from period buffer */
    5959        snd_pcm_plugin_t *plugin_first;
    6060        snd_pcm_plugin_t *plugin_last;
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/sscape_ioctl.h

    r212 r262  
    1111struct sscape_microcode
    1212{
    13   unsigned char code[65536];
     13  unsigned char *code;  /* 65536 chars */
    1414};
    1515
    1616#define SND_SSCAPE_LOAD_BOOTB  _IOWR('P', 100, struct sscape_bootblock)
    17 #define SND_SSCAPE_LOAD_MCODE  _IOW('P', 101, struct sscape_microcode)
     17#define SND_SSCAPE_LOAD_MCODE  _IOW ('P', 101, struct sscape_microcode)
    1818
    1919#endif
  • GPL/branches/alsa-resync1/alsa-kernel/include/sound/version.h

    r260 r262  
    1 /* include/version.h.  Generated by configure.  */
    2 #define CONFIG_SND_VERSION "0.9.6"
     1/* include/version.h.  Generated automatically by configure.  */
     2#define CONFIG_SND_VERSION "0.9.7"
    33#define CONFIG_SND_DATE ""
Note: See TracChangeset for help on using the changeset viewer.