> -----Original Message----- > From: Laurent Pinchart [mailto:laurent.pinchart at ideasonboard.com] > Sent: Thursday, May 17, 2012 12:09 AM > To: Inki Dae > Cc: dri-devel at lists.freedesktop.org > Subject: [PATCH 1/4] drm: exynos: DRIVER_BUS_PLATFORM is not a driver > feature > > DRIVER_BUS_PLATFORM is a bus type used internally in the DRM core, not a > flag for the drm_driver::driver_features field. > > Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com> > --- > drivers/gpu/drm/exynos/exynos_drm_drv.c | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c > b/drivers/gpu/drm/exynos/exynos_drm_drv.c > index 67a67b0..0080102 100644 > --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c > +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c > @@ -224,8 +224,7 @@ static const struct file_operations > exynos_drm_driver_fops = { > }; > > static struct drm_driver exynos_drm_driver = { > - .driver_features = DRIVER_HAVE_IRQ | DRIVER_BUS_PLATFORM | > - DRIVER_MODESET | DRIVER_GEM, > + .driver_features = DRIVER_HAVE_IRQ | DRIVER_MODESET | DRIVER_GEM, > .load = exynos_drm_load, > .unload = exynos_drm_unload, > .open = exynos_drm_open, > --
Applied. Thanks, Inki Dae > 1.7.3.4