aboutsummaryrefslogtreecommitdiff
path: root/include/linux/of_spmi.h
blob: b22696bf9a3f561859b0c314ab16b8e2b25fe872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <linux/spmi.h>
#include <linux/of_irq.h>

#ifdef CONFIG_OF_SPMI
/**
 * of_spmi_register_devices() - Register devices in the SPMI Device Tree
 * @ctrl: spmi_controller which devices should be registered to.
 *
 * This routine scans the SPMI Device Tree, allocating resources and
 * creating spmi_devices according to the SPMI bus Device Tree
 * hierarchy. Details of this hierarchy can be found in
 * Documentation/devicetree/bindings/spmi. This routine is normally
 * called from the probe routine of the driver registering as a
 * spmi_controller.
 */
int of_spmi_register_devices(struct spmi_controller *ctrl);
#else
static int of_spmi_register_devices(struct spmi_controller *ctrl)
{
	return -ENXIO;
}
#endif /* CONFIG_OF_SPMI */