mirror of
https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
synced 2024-11-14 22:43:44 +08:00
d4f659e12a
Some are outdated, misleading or just repeat the same thing over and over. Remove them as they are not needed. Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com> Link: https://lore.kernel.org/r/20240723185921.1005569-3-lucas.de.marchi@gmail.com Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
24 lines
671 B
C
24 lines
671 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2012-2013 ProFUSION embedded systems
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
|
|
#include "kmod.h"
|
|
|
|
void log_open(bool use_syslog);
|
|
void log_close(void);
|
|
void log_printf(int prio, const char *fmt, ...) _printf_format_(2, 3);
|
|
#define CRIT(...) log_printf(LOG_CRIT, __VA_ARGS__)
|
|
#define ERR(...) log_printf(LOG_ERR, __VA_ARGS__)
|
|
#define WRN(...) log_printf(LOG_WARNING, __VA_ARGS__)
|
|
#define INF(...) log_printf(LOG_INFO, __VA_ARGS__)
|
|
#define DBG(...) log_printf(LOG_DEBUG, __VA_ARGS__)
|
|
|
|
struct kmod_ctx;
|
|
void log_setup_kmod_log(struct kmod_ctx *ctx, int priority);
|