net: Fix remaining debug option naming issues

Some of the DEBUG options for the new IP stack still used
the CONFIG_NETWORK_IP_STACK_DEBUG_ prefix.

Change-Id: I8f039ac5e303a7c571a870403ce17d758db540d5
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2016-09-07 15:46:21 +03:00
commit 96e629c877
6 changed files with 6 additions and 6 deletions

View file

@ -469,7 +469,7 @@ void net_nbuf_unref(struct net_buf *buf);
*/
struct net_buf *net_nbuf_ref(struct net_buf *buf);
#endif /* CONFIG_NETWORK_IP_STACK_DEBUG_NET_BUF */
#endif /* CONFIG_NET_DEBUG_NET_BUF */
/**
* @brief Copy a buffer with fragments while reserving some extra space

View file

@ -20,7 +20,7 @@
* limitations under the License.
*/
#if defined(CONFIG_NETWORK_IP_STACK_DEBUG_TRICKLE)
#if defined(CONFIG_NET_DEBUG_TRICKLE)
#define SYS_LOG_DOMAIN "net/trickle"
#define NET_DEBUG 1
#endif

View file

@ -19,7 +19,7 @@
* limitations under the License.
*/
#if defined(CONFIG_NETWORK_IP_STACK_DEBUG_UTILS)
#if defined(CONFIG_NET_DEBUG_UTILS)
#define SYS_LOG_DOMAIN "net/utils"
#define NET_DEBUG 1
#endif

View file

@ -34,7 +34,7 @@
#include "net_private.h"
#if defined(CONFIG_NETWORK_IP_STACK_DEBUG_CONTEXT)
#if defined(CONFIG_NET_DEBUG_CONTEXT)
#define DBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
#else
#define DBG(fmt, ...)

View file

@ -35,7 +35,7 @@
#include "net_private.h"
#if defined(CONFIG_NETWORK_IP_STACK_DEBUG_CONTEXT)
#if defined(CONFIG_NET_DEBUG_CONTEXT)
#define DBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
#else
#define DBG(fmt, ...)

View file

@ -35,7 +35,7 @@
#include <tc_util.h>
#if defined(CONFIG_NETWORK_IP_STACK_DEBUG_UDP)
#if defined(CONFIG_NET_DEBUG_UDP)
#define DBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
#else
#define DBG(fmt, ...)