Messages in this thread |  | | Date | Sun, 24 Nov 1996 23:22:58 +0200 (EET) | From | Hannu Savolainen <> | Subject | Re: Unresolved symbols in sound.o (2.1.8-2.1.13) |
| |
On Sun, 24 Nov 1996, Alexander G. Stavitsky wrote:
> unload_uart401 undefined > probe_uart401 undefined > attach_uart401 undefined > Loading failed! The module symbols (from linux-2.1.13) don't match your > linux-2.1.13 I finally managed to find the reason to this problem. A patch is include.
Best regards,
Hannu ----------------------------- Hannu Savolainen (hannu@voxware.pp.fi, hannu@4front-tech.com) http://personal.eunet.fi/pp/voxware/hannu.html (my home page) http://www.4Front-Tech.com/oss.html (Open Sound System (OSS)) http://personal.eunet.fi/pp/voxware (OSS Free/TASD/VoxWare) --------------- cut here -------------- *** /linux/drivers/sound/dev_table.h Sat Nov 23 19:15:29 1996 --- dev_table.h Sun Nov 24 23:19:34 1996 *************** *** 15,21 **** #ifndef _DEV_TABLE_H_ #define _DEV_TABLE_H_ - #include <linux/config.h> /* * Sound card numbers 27 to 999. (1 to 26 are defined in soundcard.h) --- 15,20 ---- *************** *** 322,328 **** #if (defined(CONFIG_MPU401) || defined(CONFIG_MPU_EMU)) && defined(CONFIG_MIDI) {"MPU401", 0, SNDCARD_MPU401,"Roland MPU-401", attach_mpu401, probe_mpu401, unload_mpu401}, #endif ! #if (defined(CONFIG_UART401) || defined(CONFIG_MPU_EMU)) && defined(CONFIG_MIDI) {"UART401", 0, SNDCARD_UART401,"MPU-401 (UART)", attach_uart401, probe_uart401, unload_uart401}, #endif --- 321,327 ---- #if (defined(CONFIG_MPU401) || defined(CONFIG_MPU_EMU)) && defined(CONFIG_MIDI) {"MPU401", 0, SNDCARD_MPU401,"Roland MPU-401", attach_mpu401, probe_mpu401, unload_mpu401}, #endif ! #if defined(CONFIG_UART401) && defined(CONFIG_MIDI) {"UART401", 0, SNDCARD_UART401,"MPU-401 (UART)", attach_uart401, probe_uart401, unload_uart401}, #endif
|  |