Fix signature for *_options function
parent
c459c9ead3
commit
742c33bf61
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue