2 * Copyright (c) 2013 Qualcomm Atheros, Inc.
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.
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.
20 void __wil_err(struct wil6210_priv *wil, const char *fmt, ...)
22 struct net_device *ndev = wil_to_ndev(wil);
23 struct va_format vaf = {
30 netdev_err(ndev, "%pV", &vaf);
31 trace_wil6210_log_err(&vaf);
35 void __wil_err_ratelimited(struct wil6210_priv *wil, const char *fmt, ...)
37 if (net_ratelimit()) {
38 struct net_device *ndev = wil_to_ndev(wil);
39 struct va_format vaf = {
46 netdev_err(ndev, "%pV", &vaf);
47 trace_wil6210_log_err(&vaf);
52 void wil_dbg_ratelimited(const struct wil6210_priv *wil, const char *fmt, ...)
63 netdev_dbg(wil_to_ndev(wil), "%pV", &vaf);
64 trace_wil6210_log_dbg(&vaf);
68 void __wil_info(struct wil6210_priv *wil, const char *fmt, ...)
70 struct net_device *ndev = wil_to_ndev(wil);
71 struct va_format vaf = {
78 netdev_info(ndev, "%pV", &vaf);
79 trace_wil6210_log_info(&vaf);
83 void wil_dbg_trace(struct wil6210_priv *wil, const char *fmt, ...)
85 struct va_format vaf = {
92 trace_wil6210_log_dbg(&vaf);