The patch titled cirrusfb: add noaccel module parameter has been added to the -mm tree. Its filename is cirrusfb-add-noaccel-module-parameter.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://www.zip.com.au/~akpm/linux/patches/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: cirrusfb: add noaccel module parameter From: Krzysztof Helt <krzysztof.h1@xxxxx> The noaccel parameter is already handled if the driver is not built as module. Signed-off-by: Krzysztof Helt <krzysztof.h1@xxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/cirrusfb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/video/cirrusfb.c~cirrusfb-add-noaccel-module-parameter drivers/video/cirrusfb.c --- a/drivers/video/cirrusfb.c~cirrusfb-add-noaccel-module-parameter +++ a/drivers/video/cirrusfb.c @@ -352,7 +352,7 @@ struct cirrusfb_info { void (*unmap)(struct fb_info *info); }; -static int noaccel; +static int noaccel __devinitdata; static char *mode_option __devinitdata = "640x480@60"; /****************************************************************************/ @@ -2525,6 +2525,8 @@ module_init(cirrusfb_init); module_param(mode_option, charp, 0); MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'"); +module_param(noaccel, bool, 0); +MODULE_PARM_DESC(noaccel, "Disable acceleration"); #ifdef MODULE module_exit(cirrusfb_exit); _ Patches currently in -mm which might be from krzysztof.h1@xxxxx are origin.patch atmel_lcdfb-fix-oops-in-rmmod-when-framebuffer-fails-to-register.patch linux-next.patch fb-metronome-printk-format-warning.patch sched-fix-compilation-with-gcc-346.patch x86-delay-early-cpu-initialization-until-cpuid-is-done.patch x86-move-mtrr-cpu-cap-setting-early-in-early_init_xxxx.patch fb-convert-lock-unlock_kernel-into-local-fb-mutex.patch neofb-reduce-panning-function.patch viafb-accelc-accelh-update.patch viafb-viafbdevc-update.patch fbdev-kconfig-update.patch fbdev-kconfig-update-fix.patch neofb-kill-some-redundant-code.patch vga16fb-remove-open_lock-mutex.patch neofb-remove-open_lock-mutex.patch tdfxfb-do-not-make-changes-to-default-tdfx_fix.patch intelfb-support-945gme-as-used-in-asus-eee-901.patch cirrusfb-remove-information-about-memory-size-during-mode-change.patch cirrusfb-simplify-clock-calculation.patch cirrusfb-remove-24-bpp-mode.patch cirrusfb-drop-device-pointers-from-cirrusfb_info.patch cirrusfb-use-modedb-and-add-mode_option-parameter-2nd-rev.patch cirrusfb-add-__devinit-attribute-to-probing-functions.patch cirrusfb-eliminate-crt-registers-from-global-structure.patch cirrusfb-eliminate-crt-registers-from-global-structure-fix-up-debug-printk-types.patch cirrusfb-drop-clock-fields-from-cirrusfb_regs-structure.patch cirrusfb-add-noaccel-module-parameter.patch cirrusfb-fix-16bpp-modes.patch cirrusfb-do-not-change-mclk-for-alpine-chips.patch atmel_lcdfb-disallow-setting-larger-resolution-than-the-framebuffer-memory-can-handle.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