summaryrefslogtreecommitdiff
path: root/include/linux/platform_data/video-clcd-versatile.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2019-05-21 03:38:25 +0200
committerLinus Walleij <linus.walleij@linaro.org>2019-05-28 13:23:46 +0200
commit153969fd952d81ab8f57574f9be1a90b0a0fa791 (patch)
treef2bca60a3a05dfe82f28a9ae3fac9b90dfd70d6f /include/linux/platform_data/video-clcd-versatile.h
parent72187c626eeddbe9dd02bc7b8ea684a8f028c128 (diff)
ARM: versatile: Drop CLCD platform data
The Versatile family no longer makes any use of the CLCD platform data, we have moved over all users to the DRM driver that has built-in handling of the displays. Delete the old auxdata. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/platform_data/video-clcd-versatile.h')
-rw-r--r--include/linux/platform_data/video-clcd-versatile.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/linux/platform_data/video-clcd-versatile.h b/include/linux/platform_data/video-clcd-versatile.h
deleted file mode 100644
index 305ebaec3afd..000000000000
--- a/include/linux/platform_data/video-clcd-versatile.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef PLAT_CLCD_H
-#define PLAT_CLCD_H
-
-#ifdef CONFIG_PLAT_VERSATILE_CLCD
-struct clcd_panel *versatile_clcd_get_panel(const char *);
-int versatile_clcd_setup_dma(struct clcd_fb *, unsigned long);
-int versatile_clcd_mmap_dma(struct clcd_fb *, struct vm_area_struct *);
-void versatile_clcd_remove_dma(struct clcd_fb *);
-#else
-static inline struct clcd_panel *versatile_clcd_get_panel(const char *s)
-{
- return NULL;
-}
-static inline int versatile_clcd_setup_dma(struct clcd_fb *fb, unsigned long framesize)
-{
- return -ENODEV;
-}
-static inline int versatile_clcd_mmap_dma(struct clcd_fb *fb, struct vm_area_struct *vm)
-{
- return -ENODEV;
-}
-static inline void versatile_clcd_remove_dma(struct clcd_fb *fb)
-{
-}
-#endif
-
-#endif