URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [drivers/] [sound/] [sb_card.c] - Rev 199
Go to most recent revision | Compare with Previous | Blame | View Log
/* * sound/sb_card.c * * Detection routine for the Sound Blaster cards. */ /* * Copyright (C) by Hannu Savolainen 1993-1996 * * USS/Lite for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) * Version 2 (June 1991). See the "COPYING" file distributed with this software * for more info. */ #include <linux/config.h> #include "sound_config.h" #if defined(CONFIG_SBDSP) #include "sb_mixer.h" #include "sb.h" void attach_sb_card (struct address_info *hw_config) { #if defined(CONFIG_AUDIO) || defined(CONFIG_MIDI) sb_dsp_init (hw_config); #endif } int probe_sb (struct address_info *hw_config) { if (check_region (hw_config->io_base, 16)) { printk ("\n\nsb_dsp.c: I/O port %x already in use\n\n", hw_config->io_base); return 0; } return sb_dsp_detect (hw_config); } void unload_sb (struct address_info *hw_config) { sb_dsp_unload (hw_config); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log