1291ab06eSStefan Wahren /*
2291ab06eSStefan Wahren  *   Copyright (c) 2011, 2012, Qualcomm Atheros Communications Inc.
3291ab06eSStefan Wahren  *   Copyright (c) 2014, I2SE GmbH
4291ab06eSStefan Wahren  *
5291ab06eSStefan Wahren  *   Permission to use, copy, modify, and/or distribute this software
6291ab06eSStefan Wahren  *   for any purpose with or without fee is hereby granted, provided
7291ab06eSStefan Wahren  *   that the above copyright notice and this permission notice appear
8291ab06eSStefan Wahren  *   in all copies.
9291ab06eSStefan Wahren  *
10291ab06eSStefan Wahren  *   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11291ab06eSStefan Wahren  *   WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12291ab06eSStefan Wahren  *   WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
13291ab06eSStefan Wahren  *   THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
14291ab06eSStefan Wahren  *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15291ab06eSStefan Wahren  *   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
16291ab06eSStefan Wahren  *   NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
17291ab06eSStefan Wahren  *   CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18291ab06eSStefan Wahren  */
19291ab06eSStefan Wahren 
20291ab06eSStefan Wahren /*   This file contains debugging routines for use in the QCA7K driver.
21291ab06eSStefan Wahren  */
22291ab06eSStefan Wahren 
23291ab06eSStefan Wahren #ifndef _QCA_DEBUG_H
24291ab06eSStefan Wahren #define _QCA_DEBUG_H
25291ab06eSStefan Wahren 
26291ab06eSStefan Wahren #include "qca_spi.h"
27291ab06eSStefan Wahren 
28291ab06eSStefan Wahren void qcaspi_init_device_debugfs(struct qcaspi *qca);
29291ab06eSStefan Wahren 
30291ab06eSStefan Wahren void qcaspi_remove_device_debugfs(struct qcaspi *qca);
31291ab06eSStefan Wahren 
32291ab06eSStefan Wahren void qcaspi_set_ethtool_ops(struct net_device *dev);
33291ab06eSStefan Wahren 
34291ab06eSStefan Wahren #endif /* _QCA_DEBUG_H */
35