diff options
Diffstat (limited to 'linux/mga_drv.c')
-rw-r--r-- | linux/mga_drv.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/linux/mga_drv.c b/linux/mga_drv.c index bea65cfa..91216d24 100644 --- a/linux/mga_drv.c +++ b/linux/mga_drv.c @@ -70,6 +70,27 @@ #include "drm_dma.h" #include "drm_drawable.h" #include "drm_drv.h" + +#ifndef MODULE +/* DRM(options) is called by the kernel to parse command-line options + * passed via the boot-loader (e.g., LILO). It calls the insmod option + * routine, drm_parse_drm. + */ + +/* JH- We have to hand expand the string ourselves because of the cpp. If + * anyone can think of a way that we can fit into the __setup macro without + * changing it, then please send the solution my way. + */ +static int __init mga_options( char *str ) +{ + DRM(parse_options)( str ); + return 1; +} + +__setup( DRIVER_NAME "=", mga_options ); +#endif + + #include "drm_fops.h" #include "drm_init.h" #include "drm_ioctl.h" |