d858a547cc
This snapshot is taken as of msm-4.14 'commit <1572d8323c96> (Merge "soc: qcom: use interruptible wait in cdsprm for rpmsg messages")'. Change-Id: I06c84ae568d88f98435fddbbb74a9db6dbb59109 Signed-off-by: Dilip Kota <dkota@codeaurora.org>
27 lines
891 B
C
27 lines
891 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/slimbus/slimbus.h>
|
|
#include <linux/of_irq.h>
|
|
|
|
#ifdef CONFIG_OF_SLIMBUS
|
|
/*
|
|
* of_slim_register_devices() - Register devices in the SLIMbus Device Tree
|
|
* @ctrl: slim_controller which devices should be registered to.
|
|
*
|
|
* This routine scans the SLIMbus Device Tree, allocating resources and
|
|
* creating slim_devices according to the SLIMbus Device Tree
|
|
* hierarchy. Details of this hierarchy can be found in
|
|
* Documentation/devicetree/bindings/slimbus. This routine is normally
|
|
* called from the probe routine of the driver registering as a
|
|
* slim_controller.
|
|
*/
|
|
extern int of_register_slim_devices(struct slim_controller *ctrl);
|
|
#else
|
|
static int of_register_slim_devices(struct slim_controller *ctrl)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_OF_SLIMBUS */
|