2019-05-16 12:04:09 +00:00
|
|
|
// SPDX-License-Identifier: ISC
|
2014-06-29 14:16:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Broadcom Corporation
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_OF
|
2017-01-07 22:43:45 +00:00
|
|
|
void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
|
|
|
|
struct brcmf_mp_device *settings);
|
2014-06-29 14:16:59 +00:00
|
|
|
#else
|
2017-01-07 22:43:45 +00:00
|
|
|
static void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
|
|
|
|
struct brcmf_mp_device *settings)
|
2014-06-29 14:16:59 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_OF */
|