-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move log and system_service headers to module directory #9335
Conversation
#ifdef __XTENSA__ | ||
#define RESTRICT __restrict | ||
#else | ||
#define RESTRICT | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may be best to comment why this cant come from Zephyr as I suspect Zephyr will define this too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping - this needs a comment at least so that no one tries to optimize this later on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lgirdwood
Indeed zephyr has a similar definition ZRESTRICT
, but we want to be able to build lmdk modules without using zephyr headers so I didn't use it.
@softwarecki can you rebase? |
@softwarecki probably worth rebasing on Monday as CI doing upgrade today 9th Aug. |
Move logging priority definitions used by iadk modules to the modules directory so other types of loadable modules can use them. Propose a function to convert log priority used by loadable modules to log level used by sof. Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
Move definitions of functions exposed by system_service to the modules directory so that loadable modules can use them. Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
85ca085
to
db28a6e
Compare
Move logging priority definitions used by iadk modules to the modules directory so other types of loadable modules can use them. Propose a function to convert log priority used by loadable modules to log level used by sof.
Move definitions of functions exposed by system_service to the modules directory so that loadable modules can use them.