mirror of
https://github.com/breeze303/nss-packages.git
synced 2025-12-16 16:57:29 +00:00
To keep fork as closely synced with upstream, move NSS packages back into repository. Not sure why they were moved out from my original fork. * nss-firmware * qca-nss-crypto * qca-nss-cfi Removed the following: * mhz (already available in packages repo) * qrtr (unecessary, and has been broken for years) Also moved packages out of `qca` and back into root directory.
26 lines
757 B
Diff
26 lines
757 B
Diff
--- a/match/nss_match_priv.h
|
|
+++ b/match/nss_match_priv.h
|
|
@@ -29,19 +29,19 @@
|
|
/*
|
|
* Statically compile messages at different levels
|
|
*/
|
|
-#if (NSS_match_DEBUG_LEVEL < 2)
|
|
+#if (NSS_MATCH_DEBUG_LEVEL < 2)
|
|
#define nss_match_warn(s, ...)
|
|
#else
|
|
#define nss_match_warn(s, ...) pr_warn("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
#endif
|
|
|
|
-#if (NSS_match_DEBUG_LEVEL < 3)
|
|
+#if (NSS_MATCH_DEBUG_LEVEL < 3)
|
|
#define nss_match_info(s, ...)
|
|
#else
|
|
#define nss_match_info(s, ...) pr_notice("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
#endif
|
|
|
|
-#if (NSS_match_DEBUG_LEVEL < 4)
|
|
+#if (NSS_MATCH_DEBUG_LEVEL < 4)
|
|
#define nss_match_trace(s, ...)
|
|
#else
|
|
#define nss_match_trace(s, ...) pr_info("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|