mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 01:24:33 +00:00
1000634477
The old setup function drm_fbdev_ttm_setup() is unused. Remove it and its internal callbacks. New drivers should call drm_client_setup() instead. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-73-tzimmermann@suse.de
23 lines
488 B
C
23 lines
488 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef DRM_FBDEV_TTM_H
|
|
#define DRM_FBDEV_TTM_H
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
struct drm_fb_helper;
|
|
struct drm_fb_helper_surface_size;
|
|
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
|
int drm_fbdev_ttm_driver_fbdev_probe(struct drm_fb_helper *fb_helper,
|
|
struct drm_fb_helper_surface_size *sizes);
|
|
|
|
#define DRM_FBDEV_TTM_DRIVER_OPS \
|
|
.fbdev_probe = drm_fbdev_ttm_driver_fbdev_probe
|
|
#else
|
|
#define DRM_FBDEV_TTM_DRIVER_OPS \
|
|
.fbdev_probe = NULL
|
|
#endif
|
|
|
|
#endif
|