Ignore:
Timestamp:
May 20, 2007, 1:00:05 AM (18 years ago)
Author:
Brendan Oakley
Message:

More merges to beta12, and fixes. Now compiles, though link phase fails.

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

Legend:

Unmodified
Added
Removed
  • GPL/branches/alsa-resync1/alsa-kernel/pci/es1968.c

    r92 r106  
    9797#define __SND_OSS_COMPAT__
    9898#include <sound/driver.h>
     99#include <asm/io.h>
     100#include <linux/delay.h>
     101#include <linux/interrupt.h>
     102#include <linux/init.h>
     103#include <linux/slab.h>
     104#include <sound/core.h>
    99105#include <sound/pcm.h>
    100106#include <sound/mpu401.h>
     
    19111917    es->count += diff;
    19121918
    1913     if (es->count > es->frag_size) {
     1919        while (es->count > es->frag_size) {
    19141920        spin_unlock(&chip->substream_lock);
    19151921        snd_pcm_period_elapsed(subs);
  • GPL/branches/alsa-resync1/alsa-kernel/pci/maestro3.c

    r92 r106  
    3333
    3434#include <sound/driver.h>
     35#include <asm/io.h>
     36#include <linux/delay.h>
     37#include <linux/interrupt.h>
     38#include <linux/init.h>
     39#include <linux/slab.h>
     40#include <linux/vmalloc.h>
     41#include <sound/core.h>
    3542#include <sound/info.h>
    3643#include <sound/control.h>
     
    4249MODULE_AUTHOR("Zach Brown <zab@zabbo.net>, Takashi Iwai <tiwai@suse.de>");
    4350MODULE_DESCRIPTION("ESS Maestro3 PCI");
     51MODULE_LICENSE("GPL");
    4452MODULE_CLASSES("{sound}");
    4553MODULE_DEVICES("{{ESS,Maestro3 PCI},"
     
    28042812    chip->suspend_mem = vmalloc(sizeof(u16) * (REV_B_CODE_MEMORY_LENGTH + REV_B_DATA_MEMORY_LENGTH));
    28052813    if (chip->suspend_mem == NULL)
    2806         snd_printk("can't allocate apm buffer\n");
     2814                snd_printk(KERN_WARNING "can't allocate apm buffer\n");
     2815        else
     2816                snd_card_set_pm_callback(card, m3_suspend, m3_resume, chip);
    28072817#endif
    28082818
  • GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_main.c

    r84 r106  
    2828 */
    2929
    30 #define SNDRV_MAIN_OBJECT_FILE
     30#define __NO_VERSION__
    3131#include <sound/driver.h>
     32#include <asm/io.h>
     33#include <linux/delay.h>
     34#include <linux/init.h>
     35#include <linux/slab.h>
     36#include <linux/vmalloc.h>
     37#include <sound/core.h>
    3238#include <sound/info.h>
    3339#include <sound/control.h>
    3440#include <sound/trident.h>
     41#include <sound/asoundef.h>
    3542
    3643static int snd_trident_pcm_mixer_build(struct snd_trident *trident, struct snd_trident_voice* voice, snd_pcm_substream_t *substream);
  • GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_memory.c

    r34 r106  
    2424 */
    2525
     26#define __NO_VERSION__
    2627#include <sound/driver.h>
     28#include <asm/io.h>
    2729#include <linux/pci.h>
     30#include <linux/time.h>
     31#include <sound/core.h>
    2832#include <sound/trident.h>
    2933
  • GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_synth.c

    r34 r106  
    2020 */
    2121
    22 #define SNDRV_MAIN_OBJECT_FILE
    2322#include <sound/driver.h>
     23#include <asm/io.h>
     24#include <linux/init.h>
     25#include <linux/slab.h>
    2426#include <linux/pci.h>
     27#include <sound/core.h>
    2528#include <sound/trident.h>
    2629#include <sound/seq_device.h>
  • GPL/branches/alsa-resync1/alsa-kernel/pci/ymfpci/ymfpci_main.c

    r84 r106  
    2525 */
    2626
     27#define __NO_VERSION__
    2728#include <sound/driver.h>
     29#include <asm/io.h>
     30#include <linux/delay.h>
     31#include <linux/init.h>
     32#include <linux/slab.h>
     33#include <sound/core.h>
    2834#include <sound/control.h>
    2935#include <sound/info.h>
    3036#include <sound/ymfpci.h>
     37#include <sound/asoundef.h>
     38#include <sound/mpu401.h>
     39#ifdef TARGET_OS2
    3140#include <sound/timer.h>
     41#endif /* TARGET_OS2 */
    3242
    3343/*
Note: See TracChangeset for help on using the changeset viewer.