aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLespiau, Damien <damien.lespiau@intel.com>2013-08-19 19:53:10 -0400
committerDave Airlie <airlied@redhat.com>2013-08-20 22:47:56 -0400
commit66cc8b6b8b2b3b5c9a67429af04ec356ff7fcfa4 (patch)
treeb036153a1a0457c93b3a7b98a92c8ec6c6c6182b
parent15f3b9d95bf2c85afcf11e7536c17eaeedfcefe7 (diff)
drm: Make drm_get_platform_dev() static
It's only used in drm_platform.c. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--drivers/gpu/drm/drm_platform.c7
-rw-r--r--include/drm/drmP.h3
2 files changed, 3 insertions, 7 deletions
diff --git a/drivers/gpu/drm/drm_platform.c b/drivers/gpu/drm/drm_platform.c
index b8a282ea8751..400024b6d512 100644
--- a/drivers/gpu/drm/drm_platform.c
+++ b/drivers/gpu/drm/drm_platform.c
@@ -28,7 +28,7 @@
28#include <linux/export.h> 28#include <linux/export.h>
29#include <drm/drmP.h> 29#include <drm/drmP.h>
30 30
31/** 31/*
32 * Register. 32 * Register.
33 * 33 *
34 * \param platdev - Platform device struture 34 * \param platdev - Platform device struture
@@ -39,8 +39,8 @@
39 * Try and register, if we fail to register, backout previous work. 39 * Try and register, if we fail to register, backout previous work.
40 */ 40 */
41 41
42int drm_get_platform_dev(struct platform_device *platdev, 42static int drm_get_platform_dev(struct platform_device *platdev,
43 struct drm_driver *driver) 43 struct drm_driver *driver)
44{ 44{
45 struct drm_device *dev; 45 struct drm_device *dev;
46 int ret; 46 int ret;
@@ -107,7 +107,6 @@ err_g1:
107 mutex_unlock(&drm_global_mutex); 107 mutex_unlock(&drm_global_mutex);
108 return ret; 108 return ret;
109} 109}
110EXPORT_SYMBOL(drm_get_platform_dev);
111 110
112static int drm_platform_get_irq(struct drm_device *dev) 111static int drm_platform_get_irq(struct drm_device *dev)
113{ 112{
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 046a7db43a6c..1a7a78fdb4b7 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -1657,9 +1657,6 @@ extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
1657extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device); 1657extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device);
1658extern void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device); 1658extern void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device);
1659 1659
1660extern int drm_get_platform_dev(struct platform_device *pdev,
1661 struct drm_driver *driver);
1662
1663/* returns true if currently okay to sleep */ 1660/* returns true if currently okay to sleep */
1664static __inline__ bool drm_can_sleep(void) 1661static __inline__ bool drm_can_sleep(void)
1665{ 1662{