Fix signature for *_options function
authorRik Faith <faith@alephnull.com>
Thu, 20 Jul 2000 00:59:40 +0000 (00:59 +0000)
committerRik Faith <faith@alephnull.com>
Thu, 20 Jul 2000 00:59:40 +0000 (00:59 +0000)
linux-core/i810_drv.c
linux-core/mga_drv.c
linux-core/r128_drv.c
linux-core/tdfx_drv.c
linux/gamma_drv.c
linux/i810_drv.c
linux/mga_drv.c
linux/r128_drv.c
linux/tdfx_drv.c

index 0067785..c01008e 100644 (file)
@@ -139,7 +139,7 @@ module_exit(i810_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init i810_options(char *str, int *ints)
+static int __init i810_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index 3e486d8..75f14be 100644 (file)
@@ -138,7 +138,7 @@ module_exit(mga_cleanup);
  * drm_parse_drm.
  */
 
-static int __init mga_options(char *str, int *ints)
+static int __init mga_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index 1103832..125de17 100644 (file)
@@ -134,7 +134,7 @@ module_exit(r128_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init r128_options(char *str, int *ints)
+static int __init r128_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index f102757..b8e2ec3 100644 (file)
@@ -122,7 +122,7 @@ module_exit(tdfx_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init tdfx_options(char *str, int *ints)
+static int __init tdfx_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index 0586b4c..cfe20ad 100644 (file)
@@ -111,8 +111,8 @@ static drm_ioctl_desc_t           gamma_ioctls[] = {
 
 #ifdef MODULE
 static char                  *gamma = NULL;
-static int                   devices = 0;
 #endif
+static int                   devices = 0;
 
 MODULE_AUTHOR("VA Linux Systems, Inc.");
 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);
        return 1;
index 0067785..c01008e 100644 (file)
@@ -139,7 +139,7 @@ module_exit(i810_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init i810_options(char *str, int *ints)
+static int __init i810_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index 3e486d8..75f14be 100644 (file)
@@ -138,7 +138,7 @@ module_exit(mga_cleanup);
  * drm_parse_drm.
  */
 
-static int __init mga_options(char *str, int *ints)
+static int __init mga_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index 1103832..125de17 100644 (file)
@@ -134,7 +134,7 @@ module_exit(r128_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init r128_options(char *str, int *ints)
+static int __init r128_options(char *str)
 {
        drm_parse_options(str);
        return 1;
index f102757..b8e2ec3 100644 (file)
@@ -122,7 +122,7 @@ module_exit(tdfx_cleanup);
  * routine, drm_parse_drm.
  */
 
-static int __init tdfx_options(char *str, int *ints)
+static int __init tdfx_options(char *str)
 {
        drm_parse_options(str);
        return 1;