ctatc.h (d905163c5b23f6d8511971e06081a1b525e8a0bd) | ctatc.h (29959a09cc1aabd2d5f4f03afc0305de6bd29248) |
---|---|
1/** 2 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved. 3 * 4 * This source file is released under GPL v2 license (no other versions). 5 * See the COPYING file included in the main directory of this source 6 * distribution for the license terms and conditions. 7 * 8 * @File ctatc.h --- 122 unchanged lines hidden (view full) --- 131 void **srcs; /* Sample Rate Converters for input signal */ 132 void **srcimps; /* input mappers for SRCs */ 133 unsigned char n_daio; 134 unsigned char n_src; 135 unsigned char n_srcimp; 136 unsigned char n_pcm; 137 138 struct ct_timer *timer; | 1/** 2 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved. 3 * 4 * This source file is released under GPL v2 license (no other versions). 5 * See the COPYING file included in the main directory of this source 6 * distribution for the license terms and conditions. 7 * 8 * @File ctatc.h --- 122 unchanged lines hidden (view full) --- 131 void **srcs; /* Sample Rate Converters for input signal */ 132 void **srcimps; /* input mappers for SRCs */ 133 unsigned char n_daio; 134 unsigned char n_src; 135 unsigned char n_srcimp; 136 unsigned char n_pcm; 137 138 struct ct_timer *timer; |
139 140#ifdef CONFIG_PM 141 int (*suspend)(struct ct_atc *atc, pm_message_t state); 142 int (*resume)(struct ct_atc *atc); 143#define NUM_PCMS (NUM_CTALSADEVS - 1) 144 struct snd_pcm *pcms[NUM_PCMS]; 145#endif |
|
139}; 140 141 142int __devinit ct_atc_create(struct snd_card *card, struct pci_dev *pci, 143 unsigned int rsr, unsigned int msr, int chip_type, 144 struct ct_atc **ratc); 145int __devinit ct_atc_create_alsa_devs(struct ct_atc *atc); 146 147#endif /* CTATC_H */ | 146}; 147 148 149int __devinit ct_atc_create(struct snd_card *card, struct pci_dev *pci, 150 unsigned int rsr, unsigned int msr, int chip_type, 151 struct ct_atc **ratc); 152int __devinit ct_atc_create_alsa_devs(struct ct_atc *atc); 153 154#endif /* CTATC_H */ |