/* SPDX-License-Identifier: GPL-2.0+ */ /* * shmob_drm.h -- SH Mobile DRM driver * * Copyright (C) 2012 Renesas Electronics Corporation * * Laurent Pinchart ([email protected]) */ #ifndef __SHMOB_DRM_DRV_H__ #define __SHMOB_DRM_DRV_H__ #include <linux/kernel.h> #include <linux/platform_data/shmob_drm.h> #include <linux/spinlock.h> #include "shmob_drm_crtc.h" struct clk; struct device; struct drm_device; struct shmob_drm_config { … }; struct shmob_drm_device { … }; static inline struct shmob_drm_device *to_shmob_device(struct drm_device *dev) { … } #endif /* __SHMOB_DRM_DRV_H__ */