aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/aquantia/atlantic-fwd/atl_qcom.h
blob: 2730d048e47ca64cf7068a702ad274b756bd9a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef _ATL_QCOM_H_
#define _ATL_QCOM_H_

#ifdef CONFIG_AQFWD_QCOM

int atl_qcom_parse_dt(struct device *dev);

#else

static inline int atl_qcom_parse_dt(struct device *dev)
{
	return 0;
}

#endif // CONFIG_AQFWD_QCOM

#endif // _ATL_QCOM_H_