Fix signature for *_options function

main
Rik Faith 2000-07-20 00:59:40 +00:00
parent c459c9ead3
commit 742c33bf61
9 changed files with 10 additions and 10 deletions

View File

@ -139,7 +139,7 @@ module_exit(i810_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init i810_options(char *str, int *ints) static int __init i810_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -138,7 +138,7 @@ module_exit(mga_cleanup);
* drm_parse_drm. * drm_parse_drm.
*/ */
static int __init mga_options(char *str, int *ints) static int __init mga_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -134,7 +134,7 @@ module_exit(r128_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init r128_options(char *str, int *ints) static int __init r128_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -122,7 +122,7 @@ module_exit(tdfx_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init tdfx_options(char *str, int *ints) static int __init tdfx_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -111,8 +111,8 @@ static drm_ioctl_desc_t gamma_ioctls[] = {
#ifdef MODULE #ifdef MODULE
static char *gamma = NULL; static char *gamma = NULL;
static int devices = 0;
#endif #endif
static int devices = 0;
MODULE_AUTHOR("VA Linux Systems, Inc."); MODULE_AUTHOR("VA Linux Systems, Inc.");
MODULE_DESCRIPTION("3dlabs GMX 2000"); MODULE_DESCRIPTION("3dlabs GMX 2000");
@ -131,7 +131,7 @@ module_exit(gamma_cleanup);
*/ */
static int __init gamma_options(char *str, int *ints) static int __init gamma_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -139,7 +139,7 @@ module_exit(i810_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init i810_options(char *str, int *ints) static int __init i810_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -138,7 +138,7 @@ module_exit(mga_cleanup);
* drm_parse_drm. * drm_parse_drm.
*/ */
static int __init mga_options(char *str, int *ints) static int __init mga_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -134,7 +134,7 @@ module_exit(r128_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init r128_options(char *str, int *ints) static int __init r128_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;

View File

@ -122,7 +122,7 @@ module_exit(tdfx_cleanup);
* routine, drm_parse_drm. * routine, drm_parse_drm.
*/ */
static int __init tdfx_options(char *str, int *ints) static int __init tdfx_options(char *str)
{ {
drm_parse_options(str); drm_parse_options(str);
return 1; return 1;