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

mma7455.h (424B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * IIO accel driver for Freescale MMA7455L 3-axis 10-bit accelerometer
      4 * Copyright 2015 Joachim Eastwood <manabian@gmail.com>
      5 */
      6
      7#ifndef __MMA7455_H
      8#define __MMA7455_H
      9
     10extern const struct regmap_config mma7455_core_regmap;
     11
     12int mma7455_core_probe(struct device *dev, struct regmap *regmap,
     13		       const char *name);
     14void mma7455_core_remove(struct device *dev);
     15
     16#endif