Changeset 92 for GPL/branches/alsa-resync1/alsa-kernel/isa/sgalaxy.c
- Timestamp:
- May 2, 2007, 9:13:43 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/alsa-resync1/alsa-kernel/isa/sgalaxy.c
r32 r92 18 18 * You should have received a copy of the GNU General Public License 19 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 21 * 22 22 */ 23 23 24 #define SNDRV_MAIN_OBJECT_FILE25 24 #include <sound/driver.h> 25 #include <asm/dma.h> 26 #include <linux/init.h> 27 #include <linux/delay.h> 28 #include <linux/time.h> 29 #include <sound/core.h> 26 30 #include <sound/sb.h> 27 31 #include <sound/ad1848.h> … … 32 36 33 37 EXPORT_NO_SYMBOLS; 38 39 MODULE_AUTHOR("Christopher Butler <chrisb@sandy.force9.co.uk>"); 34 40 MODULE_DESCRIPTION("Aztech Sound Galaxy"); 41 MODULE_LICENSE("GPL"); 35 42 MODULE_CLASSES("{sound}"); 36 43 MODULE_DEVICES("{{Aztech Systems,Sound Galaxy}}"); … … 117 124 if ((tmp = inb(port + 3)) == 0xff) 118 125 { 119 snd_printdd("I/O address dead (0x%lx)\n", tmp);126 snd_printdd("I/O address dead (0x%lx)\n", port); 120 127 return 0; 121 128 } … … 299 306 if (!cards) { 300 307 #ifdef MODULE 301 snd_printk("Sound Galaxy soundcard not found or device busy\n");308 printk(KERN_ERR "Sound Galaxy soundcard not found or device busy\n"); 302 309 #endif 303 310 return -ENODEV; … … 320 327 #ifndef MODULE 321 328 322 /* format is: snd- card-sgalaxy=snd_enable,snd_index,snd_id,329 /* format is: snd-sgalaxy=snd_enable,snd_index,snd_id, 323 330 snd_sbport,snd_wssport, 324 331 snd_irq,snd_dma1 */ … … 341 348 } 342 349 343 __setup("snd- card-sgalaxy=", alsa_card_sgalaxy_setup);350 __setup("snd-sgalaxy=", alsa_card_sgalaxy_setup); 344 351 345 352 #endif /* ifndef MODULE */
Note:
See TracChangeset
for help on using the changeset viewer.