Files
android_kernel_samsung_sm8750/drivers/sdp/sdp_debug.c
2025-08-12 22:16:57 +02:00

21 lines
497 B
C
Executable File

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) Samsung Electronics Co., Ltd.
*
* 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.
*/
#include <linux/module.h>
#include <linux/sdp/sdp_debug.h>
int __weak sdp_get_disp_id(void *ctx)
{
return UNKNOWN_DISP_ID;
}
EXPORT_SYMBOL(sdp_get_disp_id);
MODULE_DESCRIPTION("sdp debug");
MODULE_LICENSE("GPL");