diff options
Diffstat (limited to 'linux-core/drm_init.c')
-rw-r--r-- | linux-core/drm_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-core/drm_init.c b/linux-core/drm_init.c index d9d8e3a2..2d6b6a3c 100644 --- a/linux-core/drm_init.c +++ b/linux-core/drm_init.c @@ -64,18 +64,18 @@ static void DRM(parse_option)(char *s) return; } -/* drm_parse_options parse the insmod "drm=" options, or the command-line +/* drm_parse_options parse the insmod "drm_opts=" options, or the command-line * options passed to the kernel via LILO. The grammar of the format is as * follows: * - * drm ::= 'drm=' option_list + * drm ::= 'drm_opts=' option_list * option_list ::= option [ ';' option_list ] * option ::= 'device:' major * | 'debug' * | 'noctx' * major ::= INTEGER * - * Note that 's' contains option_list without the 'drm=' part. + * Note that 's' contains option_list without the 'drm_opts=' part. * * device=major,minor specifies the device number used for /dev/drm * if major == 0 then the misc device is used |