mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-17 00:33:40 +00:00
There are significant changes between NSS version 11.4.0.5 and 12.1 (12.0.5), that it doesn't really make sense to use it with older firmware (i.e. using mesh releated features). This change will explicitly link building the proper driver and client packages when FW 12.1 or 11.4 is selected, while also backporting patches from 12.4.
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__)
|