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>
This commit is contained in:
Joe Perches
2014-09-22 09:30:11 -07:00
committed by Dave Airlie
parent 94318d50ff
commit 9908fb6540
2 changed files with 3 additions and 6 deletions

View File

@@ -124,7 +124,7 @@ extern __printf(2, 3)
void drm_ut_debug_printk(const char *function_name,
const char *format, ...);
extern __printf(2, 3)
int drm_err(const char *func, const char *format, ...);
void drm_err(const char *func, const char *format, ...);
/***********************************************************************/
/** \name DRM template customization defaults */