--- kernel-source-2.4.22/arch/um/drivers/hostaudio_kern.c.orig 2003-12-16 14:23:31.000000000 -0800 +++ kernel-source-2.4.22/arch/um/drivers/hostaudio_kern.c 2003-12-16 14:24:02.000000000 -0800 @@ -20,6 +20,14 @@ char *dsp = HOSTAUDIO_DEV_DSP; char *mixer = HOSTAUDIO_DEV_MIXER; +#define DSP_HELP \ +" This is used to specify the host dsp device to the hostaudio driver.\n" \ +" The default is \"" HOSTAUDIO_DEV_DSP "\".\n\n" + +#define MIXER_HELP \ +" This is used to specify the host mixer device to the hostaudio driver.\n" \ +" The default is \"" HOSTAUDIO_DEV_MIXER "\".\n\n" + #ifndef MODULE static int set_dsp(char *name, int *add) { @@ -27,10 +35,6 @@ return(0); } -#define DSP_HELP \ -" This is used to specify the host dsp device to the hostaudio driver.\n" \ -" The default is \"" HOSTAUDIO_DEV_DSP "\".\n\n" - __uml_setup("dsp=", set_dsp, "dsp=\n" DSP_HELP); static int set_mixer(char *name, int *add) @@ -39,10 +43,6 @@ return(0); } -#define MIXER_HELP \ -" This is used to specify the host mixer device to the hostaudio driver.\n" \ -" The default is \"" HOSTAUDIO_DEV_MIXER "\".\n\n" - __uml_setup("mixer=", set_mixer, "mixer=\n" MIXER_HELP); #else /*MODULE*/