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

adxl372.h (388B)


      1/* SPDX-License-Identifier: GPL-2.0+ */
      2/*
      3 * ADXL372 3-Axis Digital Accelerometer
      4 *
      5 * Copyright 2018 Analog Devices Inc.
      6 */
      7
      8#ifndef _ADXL372_H_
      9#define _ADXL372_H_
     10
     11#define ADXL372_REVID	0x03
     12
     13int adxl372_probe(struct device *dev, struct regmap *regmap,
     14		  int irq, const char *name);
     15bool adxl372_readable_noinc_reg(struct device *dev, unsigned int reg);
     16
     17#endif /* _ADXL372_H_ */