mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
266be7cb11
Convert the module to be property provider agnostic and allow it to be used on non-OF platforms. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Tested-by: Kai-Heng Feng <kai.heng.feng@canonical.com> Link: https://lore.kernel.org/r/20220222090009.2060-4-andriy.shevchenko@linux.intel.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
19 lines
350 B
C
19 lines
350 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ADXL345 3-Axis Digital Accelerometer
|
|
*
|
|
* Copyright (c) 2017 Eva Rachel Retuya <eraretuya@gmail.com>
|
|
*/
|
|
|
|
#ifndef _ADXL345_H_
|
|
#define _ADXL345_H_
|
|
|
|
enum adxl345_device_type {
|
|
ADXL345 = 1,
|
|
ADXL375 = 2,
|
|
};
|
|
|
|
int adxl345_core_probe(struct device *dev, struct regmap *regmap);
|
|
|
|
#endif /* _ADXL345_H_ */
|