diff options
author | Joe Perches <joe@perches.com> | 2014-09-22 20:30:11 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-09-24 05:42:36 +0400 |
commit | 9908fb654088e50d7d528f74898c5e5ebbd0fb68 (patch) | |
tree | 14f640b5845f72ad31cfc04abeccbe2ff3c72e3e /drivers/gpu/drm/drm_drv.c | |
parent | 94318d50ffc84a1ebaf1a83a0a56bbbaf415bacf (diff) | |
download | linux-9908fb654088e50d7d528f74898c5e5ebbd0fb68.tar.xz |
drm: change drm_err return type to void
The return value is not used by callers of this function
nor by uses of the DRM_ERROR macro so change the function
to return void.
Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_drv.c')
-rw-r--r-- | drivers/gpu/drm/drm_drv.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 6a119026a76b..8889f8ec50ab 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -56,22 +56,19 @@ static struct idr drm_minors_idr; struct class *drm_class; static struct dentry *drm_debugfs_root; -int drm_err(const char *func, const char *format, ...) +void drm_err(const char *func, const char *format, ...) { struct va_format vaf; va_list args; - int r; va_start(args, format); vaf.fmt = format; vaf.va = &args; - r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf); + printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf); va_end(args); - - return r; } EXPORT_SYMBOL(drm_err); |