Skip to content

Commit

Permalink
drm/kms: no need to return void value (encoder)
Browse files Browse the repository at this point in the history
Cc: Francisco Jerez <[email protected]>
Signed-off-by: Pekka Paalanen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
  • Loading branch information
ppaalanen authored and airlied committed Aug 19, 2009
1 parent 53bd838 commit 949ef70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/drm/drm_encoder_slave.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static inline int drm_i2c_encoder_register(struct module *owner,
*/
static inline void drm_i2c_encoder_unregister(struct drm_i2c_encoder_driver *driver)
{
return i2c_del_driver(&driver->i2c_driver);
i2c_del_driver(&driver->i2c_driver);
}

void drm_i2c_encoder_destroy(struct drm_encoder *encoder);
Expand Down

0 comments on commit 949ef70

Please sign in to comment.