You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
577 B
23 lines
577 B
/*
|
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _DSMS_DEBUG_H
|
|
#define _DSMS_DEBUG_H
|
|
|
|
#define DSMS_TAG "[DSMS-KERNEL] "
|
|
#define DSMS_DEBUG_TAG "[DSMS-KERNEL] DEBUG: "
|
|
|
|
#ifdef DSMS_DEBUG_ENABLE
|
|
|
|
extern void dsms_debug_message(const char *feature_code,
|
|
const char *detail,
|
|
int64_t value);
|
|
|
|
#endif //DSMS_DEBUG_ENABLE
|
|
|
|
#endif /* _DSMS_DEBUG_H */
|
|
|