[PATCH] drm: MODULE_PARM_DESC

From: Magnus Damm
Date: Sun Mar 20 2005 - 13:35:36 EST


For 2.6.12 and 2.6.11.x:

Remove incorrect "drm_"-prefix from parameter description.

Signed-off-by: Magnus Damm <damm@xxxxxxxxxxxxx>

--- linux-2.6.11.5/drivers/char/drm/drm_stub.c 2005-03-20 18:09:14.348412000 +0100
+++ linux-2.6.11.5-drm_parm_desc/drivers/char/drm/drm_stub.c 2005-03-20 18:52:14.279203192 +0100
@@ -43,8 +43,8 @@
MODULE_AUTHOR( DRIVER_AUTHOR );
MODULE_DESCRIPTION( DRIVER_DESC );
MODULE_LICENSE("GPL and additional rights");
-MODULE_PARM_DESC(drm_cards_limit, "Maximum number of graphics cards");
-MODULE_PARM_DESC(drm_debug, "Enable debug output");
+MODULE_PARM_DESC(cards_limit, "Maximum number of graphics cards");
+MODULE_PARM_DESC(debug, "Enable debug output");

module_param_named(cards_limit, drm_cards_limit, int, 0444);
module_param_named(debug, drm_debug, int, 0666);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/