Changeset 92 for GPL/branches/alsa-resync1/alsa-kernel/drivers/dummy.c
- Timestamp:
- May 2, 2007, 9:13:43 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/alsa-resync1/alsa-kernel/drivers/dummy.c
r32 r92 15 15 * You should have received a copy of the GNU General Public License 16 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 * 19 19 */ 20 20 21 #define SNDRV_MAIN_OBJECT_FILE22 21 #include <sound/driver.h> 22 #include <linux/init.h> 23 #include <linux/sched.h> 24 #include <linux/slab.h> 25 #include <linux/time.h> 26 #include <linux/wait.h> 27 #include <sound/core.h> 23 28 #include <sound/control.h> 24 29 #include <sound/pcm.h> … … 26 31 #define SNDRV_GET_ID 27 32 #include <sound/initval.h> 33 34 EXPORT_NO_SYMBOLS; 28 35 29 36 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); … … 609 616 if (snd_card_dummy_probe(dev) < 0) { 610 617 #ifdef MODULE 611 snd_printk("Dummy soundcard #%i not found or device busy\n", dev + 1);618 printk(KERN_ERR "Dummy soundcard #%i not found or device busy\n", dev + 1); 612 619 #endif 613 620 break; … … 617 624 if (!cards) { 618 625 #ifdef MODULE 619 snd_printk("Dummy soundcard not found or device busy\n");626 printk(KERN_ERR "Dummy soundcard not found or device busy\n"); 620 627 #endif 621 628 return -ENODEV; … … 637 644 #ifndef MODULE 638 645 639 /* format is: snd- card-dummy=snd_enable,snd_index,snd_id,646 /* format is: snd-dummy=snd_enable,snd_index,snd_id, 640 647 snd_pcm_devs,snd_pcm_substreams */ 641 648
Note:
See TracChangeset
for help on using the changeset viewer.
