The patch titled uml: fix build has been added to the -mm tree. Its filename is uml-fix-build.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: uml: fix build From: FUJITA Tomonori <fujita.tomonori@xxxxxxxxxxxxx> Fix a build error introduced by d6d1b650ae6acce73d55dd024 ("param: simple locking for sysfs-writable charp parameters"). CC arch/um/kernel/trap.o arch/um/drivers/hostaudio_kern.c: In function \u2018hostaudio_open\u2019: arch/um/drivers/hostaudio_kern.c:204: error: \u2018__param_dsp\u2019 undeclared (first use in this function) arch/um/drivers/hostaudio_kern.c:204: error: (Each undeclared identifier is reported only once arch/um/drivers/hostaudio_kern.c:204: error: for each function it appears in.) arch/um/drivers/hostaudio_kern.c: In function \u2018hostmixer_open_mixdev\u2019: arch/um/drivers/hostaudio_kern.c:265: error: \u2018__param_mixer\u2019 undeclared (first use in this function) arch/um/drivers/hostaudio_kern.c:272: error: \u2018__param_dsp\u2019 undeclared (first use in this function) Reported-by: Toralf Förster <toralf.foerster@xxxxxx> Tested-by: Toralf Förster <toralf.foerster@xxxxxx> Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/drivers/hostaudio_kern.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff -puN arch/um/drivers/hostaudio_kern.c~uml-fix-build arch/um/drivers/hostaudio_kern.c --- a/arch/um/drivers/hostaudio_kern.c~uml-fix-build +++ a/arch/um/drivers/hostaudio_kern.c @@ -40,6 +40,11 @@ static char *mixer = HOSTAUDIO_DEV_MIXER " This is used to specify the host mixer device to the hostaudio driver.\n"\ " The default is \"" HOSTAUDIO_DEV_MIXER "\".\n\n" +module_param(dsp, charp, 0644); +MODULE_PARM_DESC(dsp, DSP_HELP); +module_param(mixer, charp, 0644); +MODULE_PARM_DESC(mixer, MIXER_HELP); + #ifndef MODULE static int set_dsp(char *name, int *add) { @@ -56,15 +61,6 @@ static int set_mixer(char *name, int *ad } __uml_setup("mixer=", set_mixer, "mixer=<mixer device>\n" MIXER_HELP); - -#else /*MODULE*/ - -module_param(dsp, charp, 0644); -MODULE_PARM_DESC(dsp, DSP_HELP); - -module_param(mixer, charp, 0644); -MODULE_PARM_DESC(mixer, MIXER_HELP); - #endif /* /dev/dsp file operations */ _ Patches currently in -mm which might be from fujita.tomonori@xxxxxxxxxxxxx are uml-fix-build.patch linux-next.patch x86-enable-arch_dma_addr_t_64bit-with-x86_64-highmem64g.patch powerpc-enable-arch_dma_addr_t_64bit-with-arch_phys_addr_t_64bit.patch tile-enable-arch_dma_addr_t_64bit.patch mips-enable-arch_dma_addr_t_64bit-with-highmem-64bit_phys_addr-64bit.patch s390-enable-arch_dma_addr_t_64bit-with-64bit.patch alpha-enable-arch_dma_addr_t_64bit.patch uml-define-config_no_dma.patch add-the-common-dma_addr_t-typedef-to-include-linux-typesh.patch sparc-remove-dma64_addr_t-usage.patch mips-remove-dma64_addr_t-usage.patch alpha-remove-dma64_addr_t-usage.patch remove-dma64_addr_t.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html