Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fbdev: Rename FB_SYS_FOPS token to FB_SYSMEM_FOPS

Rename the token to harmonize naming among various helpers. For
example, I/O-memory helpers use FB_IOMEM_FOPS.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231127131655.4020-28-tzimmermann@suse.de

+6 -6
+2 -2
drivers/video/fbdev/Kconfig
··· 1464 1464 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 1465 1465 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 1466 1466 select FB_SYS_IMAGEBLIT 1467 - select FB_SYS_FOPS 1467 + select FB_SYSMEM_FOPS 1468 1468 select FB_MODE_HELPERS 1469 1469 select VIDEOMODE_HELPERS 1470 1470 help ··· 1477 1477 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 1478 1478 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 1479 1479 select FB_SYS_IMAGEBLIT 1480 - select FB_SYS_FOPS 1480 + select FB_SYSMEM_FOPS 1481 1481 select FB_MODE_HELPERS 1482 1482 select VIDEOMODE_HELPERS 1483 1483 help
+3 -3
drivers/video/fbdev/core/Kconfig
··· 129 129 130 130 endchoice 131 131 132 - config FB_SYS_FOPS 132 + config FB_SYSMEM_FOPS 133 133 tristate 134 134 depends on FB_CORE 135 135 ··· 142 142 depends on FB_CORE 143 143 select FB_SYS_COPYAREA 144 144 select FB_SYS_FILLRECT 145 - select FB_SYS_FOPS 146 145 select FB_SYS_IMAGEBLIT 146 + select FB_SYSMEM_FOPS 147 147 148 148 config FB_IOMEM_FOPS 149 149 tristate ··· 168 168 depends on FB_CORE 169 169 select FB_SYS_COPYAREA 170 170 select FB_SYS_FILLRECT 171 - select FB_SYS_FOPS 172 171 select FB_SYS_IMAGEBLIT 172 + select FB_SYSMEM_FOPS 173 173 174 174 config FB_SYSMEM_HELPERS_DEFERRED 175 175 bool
+1 -1
drivers/video/fbdev/core/Makefile
··· 32 32 obj-$(CONFIG_FB_SYS_FILLRECT) += sysfillrect.o 33 33 obj-$(CONFIG_FB_SYS_COPYAREA) += syscopyarea.o 34 34 obj-$(CONFIG_FB_SYS_IMAGEBLIT) += sysimgblt.o 35 - obj-$(CONFIG_FB_SYS_FOPS) += fb_sys_fops.o 35 + obj-$(CONFIG_FB_SYSMEM_FOPS) += fb_sys_fops.o 36 36 obj-$(CONFIG_FB_SVGALIB) += svgalib.o 37 37 obj-$(CONFIG_FB_DDC) += fb_ddc.o