Add samsung specific changes

This commit is contained in:
2025-08-11 14:29:00 +02:00
parent c66122e619
commit 4d134a1294
2688 changed files with 1127995 additions and 11475 deletions

20
drivers/sdp/sdp_debug.c Normal file
View File

@@ -0,0 +1,20 @@
// 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");