Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: b3a9e3b9622ae10064826dccb4f7a52bd88c7407 authored by Linus Torvalds on 14 June 2020, 19:45:04 UTC
Linux 5.8-rc1
Tip revision: b3a9e3b
of.h
// SPDX-License-Identifier: ISC
/*
 * Copyright (c) 2014 Broadcom Corporation
 */
#ifdef CONFIG_OF
void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
		    struct brcmf_mp_device *settings);
#else
static void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
			   struct brcmf_mp_device *settings)
{
}
#endif /* CONFIG_OF */
back to top