mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-03 20:07:24 -04:00
It's deprecated and only should be used by drivers which still use drm_platform_init, not by anyone else. And indeed it's entirely unused and can be nuked. This required a bit more fudging, but I guess kirin_dc_ops really wants to operate on the platform_device, not something else. Also bonus points for implementing abstraction, and then storing the vfunc in a global variable. Cc: Xinliang Liu <xinliang.liu@linaro.org> Cc: Xinwei Kong <kong.kongxinwei@hisilicon.com> Cc: Archit Taneja <architt@codeaurora.org> Reviewed-by: Sean Paul <seanpaul@chromium.org> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1471034937-651-7-git-send-email-daniel.vetter@ffwll.ch
32 lines
737 B
C
32 lines
737 B
C
/*
|
|
* Copyright (c) 2016 Linaro Limited.
|
|
* Copyright (c) 2014-2016 Hisilicon Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
#ifndef __KIRIN_DRM_DRV_H__
|
|
#define __KIRIN_DRM_DRV_H__
|
|
|
|
#define MAX_CRTC 2
|
|
|
|
/* display controller init/cleanup ops */
|
|
struct kirin_dc_ops {
|
|
int (*init)(struct platform_device *pdev);
|
|
void (*cleanup)(struct platform_device *pdev);
|
|
};
|
|
|
|
struct kirin_drm_private {
|
|
struct drm_crtc *crtc[MAX_CRTC];
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
|
struct drm_fbdev_cma *fbdev;
|
|
#endif
|
|
};
|
|
|
|
extern const struct kirin_dc_ops ade_dc_ops;
|
|
|
|
#endif /* __KIRIN_DRM_DRV_H__ */
|