Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc2 16 lines 424 B view raw
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