log.c (d0034a7a4ac7fae708146ac0059b9c47a1543f0d) | log.c (c0891ac15f0428ffa81b2e818d416bdf3cb74ab6) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) B.A.T.M.A.N. contributors: 3 * 4 * Marek Lindner 5 */ 6 7#include "log.h" 8#include "main.h" 9 | 1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) B.A.T.M.A.N. contributors: 3 * 4 * Marek Lindner 5 */ 6 7#include "log.h" 8#include "main.h" 9 |
10#include <stdarg.h> | 10#include <linux/stdarg.h> |
11 12#include "trace.h" 13 14/** 15 * batadv_debug_log() - Add debug log entry 16 * @bat_priv: the bat priv with all the soft interface information 17 * @fmt: format string 18 * --- 18 unchanged lines hidden --- | 11 12#include "trace.h" 13 14/** 15 * batadv_debug_log() - Add debug log entry 16 * @bat_priv: the bat priv with all the soft interface information 17 * @fmt: format string 18 * --- 18 unchanged lines hidden --- |