diff options
Diffstat (limited to 'drivers/gpu/drm/drm_drv.c')
-rw-r--r-- | drivers/gpu/drm/drm_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 66456698447e..970613c5a1eb 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c | |||
@@ -39,7 +39,7 @@ | |||
39 | unsigned int drm_debug = 0; /* 1 to enable debug output */ | 39 | unsigned int drm_debug = 0; /* 1 to enable debug output */ |
40 | EXPORT_SYMBOL(drm_debug); | 40 | EXPORT_SYMBOL(drm_debug); |
41 | 41 | ||
42 | unsigned int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */ | 42 | int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */ |
43 | 43 | ||
44 | unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */ | 44 | unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */ |
45 | 45 | ||
@@ -53,7 +53,7 @@ MODULE_AUTHOR(CORE_AUTHOR); | |||
53 | MODULE_DESCRIPTION(CORE_DESC); | 53 | MODULE_DESCRIPTION(CORE_DESC); |
54 | MODULE_LICENSE("GPL and additional rights"); | 54 | MODULE_LICENSE("GPL and additional rights"); |
55 | MODULE_PARM_DESC(debug, "Enable debug output"); | 55 | MODULE_PARM_DESC(debug, "Enable debug output"); |
56 | MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]"); | 56 | MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs] (0: never disable, <0: disable immediately)"); |
57 | MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]"); | 57 | MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]"); |
58 | MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps"); | 58 | MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps"); |
59 | 59 | ||