diff options
-rw-r--r-- | drivers/gpu/drm/drm_modes.c | 21 | ||||
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
2 files changed, 0 insertions, 23 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 504a602f495c..fc2adb62b757 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c | |||
@@ -596,27 +596,6 @@ void drm_mode_set_name(struct drm_display_mode *mode) | |||
596 | EXPORT_SYMBOL(drm_mode_set_name); | 596 | EXPORT_SYMBOL(drm_mode_set_name); |
597 | 597 | ||
598 | /** | 598 | /** |
599 | * drm_mode_list_concat - move modes from one list to another | ||
600 | * @head: source list | ||
601 | * @new: dst list | ||
602 | * | ||
603 | * LOCKING: | ||
604 | * Caller must ensure both lists are locked. | ||
605 | * | ||
606 | * Move all the modes from @head to @new. | ||
607 | */ | ||
608 | void drm_mode_list_concat(struct list_head *head, struct list_head *new) | ||
609 | { | ||
610 | |||
611 | struct list_head *entry, *tmp; | ||
612 | |||
613 | list_for_each_safe(entry, tmp, head) { | ||
614 | list_move_tail(entry, new); | ||
615 | } | ||
616 | } | ||
617 | EXPORT_SYMBOL(drm_mode_list_concat); | ||
618 | |||
619 | /** | ||
620 | * drm_mode_width - get the width of a mode | 599 | * drm_mode_width - get the width of a mode |
621 | * @mode: mode | 600 | * @mode: mode |
622 | * | 601 | * |
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 781988f637ec..39d84dc7abcf 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -927,8 +927,6 @@ extern int drm_mode_height(const struct drm_display_mode *mode); | |||
927 | /* for us by fb module */ | 927 | /* for us by fb module */ |
928 | extern struct drm_display_mode *drm_mode_create(struct drm_device *dev); | 928 | extern struct drm_display_mode *drm_mode_create(struct drm_device *dev); |
929 | extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode); | 929 | extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode); |
930 | extern void drm_mode_list_concat(struct list_head *head, | ||
931 | struct list_head *new); | ||
932 | extern void drm_mode_validate_size(struct drm_device *dev, | 930 | extern void drm_mode_validate_size(struct drm_device *dev, |
933 | struct list_head *mode_list, | 931 | struct list_head *mode_list, |
934 | int maxX, int maxY, int maxPitch); | 932 | int maxX, int maxY, int maxPitch); |