Skip to content

Commit

Permalink
drm/udl: Remove dummy busid callback
Browse files Browse the repository at this point in the history
Since

commit ca8e2ad
Author: Thierry Reding <treding@nvidia.com>
Date:   Fri Apr 11 15:23:00 2014 +0200

    drm: Introduce drm_dev_set_unique()

the ->set_busid callback is optional. On top of that the udl one isn't
really fully compliant with the drm uabi, but since only modesetting
ever binds to it (there's no 3d accel on udl) it doesn't matter.

Still, can't harm to aling and use the default used by everyone else.

Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170524145212.27837-4-daniel.vetter@ffwll.ch
  • Loading branch information
Daniel Vetter committed Jun 20, 2017
1 parent ca814b2 commit 76bba2c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions drivers/gpu/drm/udl/udl_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@
#include <drm/drm_crtc_helper.h>
#include "udl_drv.h"

static int udl_driver_set_busid(struct drm_device *d, struct drm_master *m)
{
return 0;
}

static int udl_usb_suspend(struct usb_interface *interface,
pm_message_t message)
{
Expand Down Expand Up @@ -52,7 +47,6 @@ static struct drm_driver driver = {
.driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
.load = udl_driver_load,
.unload = udl_driver_unload,
.set_busid = udl_driver_set_busid,

/* gem hooks */
.gem_free_object = udl_gem_free_object,
Expand Down

0 comments on commit 76bba2c

Please sign in to comment.