aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Zimmermann <[email protected]>2023-07-07 10:32:02 +0200
committerThomas Zimmermann <[email protected]>2023-07-24 20:14:43 +0200
commit94fc7ad91b0da4c13c0f7fdf96f24b2baa2eccc0 (patch)
treee0f3a5c04a7d798fa41111c57cd4290f64eb4bbc
parentf98eb6c0ea72b74506e28e1cc41cbd6b0878c9bd (diff)
fbdev: Remove FB_DEFAULT_SYS_OPS
Remove the initializer macro FB_DEFAULT_SYS_OPS and its helper macro __FB_DEFAULT_SYS_OPS_MMAP. There are no users. Signed-off-by: Thomas Zimmermann <[email protected]> Reviewed-by: Javier Martinez Canillas <[email protected]> Acked-by: Maxime Ripard <[email protected]> Cc: Helge Deller <[email protected]> (maintainer:FRAMEBUFFER LAYER) Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r--include/linux/fb.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h
index cb23f7d7df10..a63077154ff6 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -583,14 +583,6 @@ extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
.fb_copyarea = sys_copyarea, \
.fb_imageblit = sys_imageblit
-#define __FB_DEFAULT_SYS_OPS_MMAP \
- .fb_mmap = NULL /* default implementation */
-
-#define FB_DEFAULT_SYS_OPS \
- __FB_DEFAULT_SYS_OPS_RDWR, \
- __FB_DEFAULT_SYS_OPS_DRAW, \
- __FB_DEFAULT_SYS_OPS_MMAP
-
/*
* Helpers for framebuffers in DMA-able memory
*/