blob: f686cdc5fa1c1915777797aeeb8165249f8aca1c [file] [log] [blame]
Sagar Dhariabe37c9c2016-11-28 23:06:58 -07001/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include <linux/slimbus/slimbus.h>
14#include <linux/of_irq.h>
15
16#ifdef CONFIG_OF_SLIMBUS
17/*
18 * of_slim_register_devices() - Register devices in the SLIMbus Device Tree
19 * @ctrl: slim_controller which devices should be registered to.
20 *
21 * This routine scans the SLIMbus Device Tree, allocating resources and
22 * creating slim_devices according to the SLIMbus Device Tree
23 * hierarchy. Details of this hierarchy can be found in
24 * Documentation/devicetree/bindings/slimbus. This routine is normally
25 * called from the probe routine of the driver registering as a
26 * slim_controller.
27 */
28extern int of_register_slim_devices(struct slim_controller *ctrl);
29#else
30static int of_register_slim_devices(struct slim_controller *ctrl)
31{
32 return 0;
33}
34#endif /* CONFIG_OF_SLIMBUS */