summaryrefslogtreecommitdiff
path: root/lwis_init.h
blob: 40b1c8f0d2f54433dc7bb2e437d80c00259d741e (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
35
/*
 * Google LWIS Base Device Driver - Init Function Declarations
 *
 * Copyright (c) 2019 Google, LLC
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef LWIS_INIT_H_
#define LWIS_INIT_H_

/* lwis_device_ioreg.c */
int lwis_ioreg_device_init(void);

/* lwis_device_top.c */
int lwis_top_device_init(void);

/* lwis_device_i2c.c */
int lwis_i2c_device_init(void);

/* lwis_device_slc.c */
int lwis_slc_device_init(void);

/* lwis_device_dpm.c */
int lwis_dpm_device_init(void);

/* lwis_device_test.c */
int lwis_test_device_init(void);

/* lwis_device_spi.c */
int lwis_spi_device_init(void);

#endif // LWIS_INIT_H_