sdp_debug.c 497 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) Samsung Electronics Co., Ltd.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <linux/module.h>
  10. #include <linux/sdp/sdp_debug.h>
  11. int __weak sdp_get_disp_id(void *ctx)
  12. {
  13. return UNKNOWN_DISP_ID;
  14. }
  15. EXPORT_SYMBOL(sdp_get_disp_id);
  16. MODULE_DESCRIPTION("sdp debug");
  17. MODULE_LICENSE("GPL");