mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
54bd40dae9
PD#SWPL-82197 Problem: no drm driver support Solution: add drm driver support Verify: ap222 Change-Id: I331a75afe6087278ebf9de27ae36a346539d09a8 Signed-off-by: yujun.zhang <yujun.zhang@amlogic.com>
18 lines
428 B
C
18 lines
428 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __AM_MESON_SYSFS_H
|
|
#define __AM_MESON_SYSFS_H
|
|
|
|
#include <linux/platform_device.h>
|
|
#include <linux/kthread.h>
|
|
#include <linux/of.h>
|
|
#include <drm/drmP.h>
|
|
|
|
int meson_drm_sysfs_register(struct drm_device *drm_dev);
|
|
void meson_drm_sysfs_unregister(struct drm_device *drm_dev);
|
|
|
|
#endif /* __AM_MESON_SYSFS_H */
|