1 /*
2 * Copyright (c) 2013 Qualcomm Atheros, Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17 #include "wil6210.h"
18 #include "trace.h"
19
wil_err(struct wil6210_priv * wil,const char * fmt,...)20 void wil_err(struct wil6210_priv *wil, const char *fmt, ...)
21 {
22 struct net_device *ndev = wil_to_ndev(wil);
23 struct va_format vaf = {
24 .fmt = fmt,
25 };
26 va_list args;
27
28 va_start(args, fmt);
29 vaf.va = &args;
30 netdev_err(ndev, "%pV", &vaf);
31 trace_wil6210_log_err(&vaf);
32 va_end(args);
33 }
34
wil_info(struct wil6210_priv * wil,const char * fmt,...)35 void wil_info(struct wil6210_priv *wil, const char *fmt, ...)
36 {
37 struct net_device *ndev = wil_to_ndev(wil);
38 struct va_format vaf = {
39 .fmt = fmt,
40 };
41 va_list args;
42
43 va_start(args, fmt);
44 vaf.va = &args;
45 netdev_info(ndev, "%pV", &vaf);
46 trace_wil6210_log_info(&vaf);
47 va_end(args);
48 }
49
wil_dbg_trace(struct wil6210_priv * wil,const char * fmt,...)50 void wil_dbg_trace(struct wil6210_priv *wil, const char *fmt, ...)
51 {
52 struct va_format vaf = {
53 .fmt = fmt,
54 };
55 va_list args;
56
57 va_start(args, fmt);
58 vaf.va = &args;
59 trace_wil6210_log_dbg(&vaf);
60 va_end(args);
61 }
62