Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2 20 lines 445 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * ADXL345 3-Axis Digital Accelerometer 4 * 5 * Copyright (c) 2017 Eva Rachel Retuya <eraretuya@gmail.com> 6 */ 7 8#ifndef _ADXL345_H_ 9#define _ADXL345_H_ 10 11enum adxl345_device_type { 12 ADXL345, 13 ADXL375, 14}; 15 16int adxl345_core_probe(struct device *dev, struct regmap *regmap, 17 enum adxl345_device_type type, const char *name); 18int adxl345_core_remove(struct device *dev); 19 20#endif /* _ADXL345_H_ */