mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Update copyright headers in accordance with Qualcomm's current legal policy. Signed-off-by: Zack McKevitt <zmckevit@qti.qualcomm.com> Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com> Reviewed-by: Jeff Hugo <jeff.hugo@oss.qualcomm.com> Signed-off-by: Jeff Hugo <jeff.hugo@oss.qualcomm.com> Link: https://patch.msgid.link/20251223172425.2283978-1-youssef.abdulrahman@oss.qualcomm.com
21 lines
667 B
C
21 lines
667 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* Copyright (c) 2020, The Linux Foundation. All rights reserved. */
|
|
/* Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. */
|
|
|
|
#ifndef __QAIC_DEBUGFS_H__
|
|
#define __QAIC_DEBUGFS_H__
|
|
|
|
#include <drm/drm_file.h>
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
int qaic_bootlog_register(void);
|
|
void qaic_bootlog_unregister(void);
|
|
void qaic_debugfs_init(struct qaic_drm_device *qddev);
|
|
#else
|
|
static inline int qaic_bootlog_register(void) { return 0; }
|
|
static inline void qaic_bootlog_unregister(void) {}
|
|
static inline void qaic_debugfs_init(struct qaic_drm_device *qddev) {}
|
|
#endif /* CONFIG_DEBUG_FS */
|
|
#endif /* __QAIC_DEBUGFS_H__ */
|