xref: /linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.h (revision 7f71507851fc7764b36a3221839607d3a45c2025)
1 // SPDX-License-Identifier: ISC
2 /*
3  * Copyright (c) 2014 Broadcom Corporation
4  */
5 #ifdef CONFIG_OF
6 int brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
7 		   struct brcmf_mp_device *settings);
8 #else
9 static int brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
10 			  struct brcmf_mp_device *settings)
11 {
12 	return 0;
13 }
14 #endif /* CONFIG_OF */
15