Skip to content

Commit

Permalink
[PATCH] uml: update module interface
Browse files Browse the repository at this point in the history
This patch replaces the deprecated MODULE_PARM function by the new
module_param function.

Signed-off-by: Dominik Hackl <dominik@hackl.dhs.org>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Dominik Hackl authored and Linus Torvalds committed Jul 27, 2005
1 parent cb66504 commit 20a64f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/um/drivers/hostaudio_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ __uml_setup("mixer=", set_mixer, "mixer=<mixer device>\n" MIXER_HELP);

#else /*MODULE*/

MODULE_PARM(dsp, "s");
module_param(dsp, charp, 0644);
MODULE_PARM_DESC(dsp, DSP_HELP);

MODULE_PARM(mixer, "s");
module_param(mixer, charp, 0644);
MODULE_PARM_DESC(mixer, MIXER_HELP);

#endif
Expand Down

0 comments on commit 20a64f1

Please sign in to comment.