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 int wil_err(struct wil6210_priv
*wil
, const char *fmt
, ...)
22 struct net_device
*ndev
= wil_to_ndev(wil
);
23 struct va_format vaf
= {
31 ret
= netdev_err(ndev
, "%pV", &vaf
);
32 trace_wil6210_log_err(&vaf
);
38 int wil_info(struct wil6210_priv
*wil
, const char *fmt
, ...)
40 struct net_device
*ndev
= wil_to_ndev(wil
);
41 struct va_format vaf
= {
49 ret
= netdev_info(ndev
, "%pV", &vaf
);
50 trace_wil6210_log_info(&vaf
);
56 int wil_dbg_trace(struct wil6210_priv
*wil
, const char *fmt
, ...)
58 struct va_format vaf
= {
65 trace_wil6210_log_dbg(&vaf
);