aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2018-03-27 23:47:21 +0300
committerJani Nikula <jani.nikula@intel.com>2018-03-28 09:35:12 +0300
commit885a31cb6c752d5403adc6389894c27560fc6e6c (patch)
treeeae09f5a776eea1b179b31619c0253f404eee4c0 /include/drm
parentdrm: prefer inline over __inline__ (diff)
downloadlinux-dev-885a31cb6c752d5403adc6389894c27560fc6e6c.tar.xz
linux-dev-885a31cb6c752d5403adc6389894c27560fc6e6c.zip
drm: remove old documentation comment cruft from drmP.h
Throw out the leftovers. Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180327204722.31246-2-jani.nikula@intel.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drmP.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 4bbef061c9c0..b5d52a3d7d19 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -95,14 +95,6 @@ struct dma_buf_attachment;
struct pci_dev;
struct pci_controller;
-/***********************************************************************/
-/** \name DRM template customization defaults */
-/*@{*/
-
-/***********************************************************************/
-/** \name Internal types and structures */
-/*@{*/
-
#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
/**
@@ -128,19 +120,6 @@ static inline int drm_core_check_feature(struct drm_device *dev, int feature)
return ((dev->driver->driver_features & feature) ? 1 : 0);
}
-/******************************************************************/
-/** \name Internal function definitions */
-/*@{*/
-
- /* Driver support (drm_drv.h) */
-
-/*
- * These are exported to drivers so that they can implement fencing using
- * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
- */
-
-/*@}*/
-
/* returns true if currently okay to sleep */
static inline bool drm_can_sleep(void)
{