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 v6.3-rc6 18 lines 350 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 = 1, 13 ADXL375 = 2, 14}; 15 16int adxl345_core_probe(struct device *dev, struct regmap *regmap); 17 18#endif /* _ADXL345_H_ */