Blame view

kernel/linux-rt-4.4.41/drivers/iio/accel/bmc150-accel.h 396 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #ifndef _BMC150_ACCEL_H_
  #define _BMC150_ACCEL_H_
  
  struct regmap;
  
  enum {
  	bmc150,
  	bmi055,
  	bma255,
  	bma250e,
  	bma222e,
  	bma280,
  };
  
  int bmc150_accel_core_probe(struct device *dev, struct regmap *regmap, int irq,
  			    const char *name, bool block_supported);
  int bmc150_accel_core_remove(struct device *dev);
  extern const struct dev_pm_ops bmc150_accel_pm_ops;
  
  #endif  /* _BMC150_ACCEL_H_ */