cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

adxl345.h (350B)


      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_ */