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

Configure Feed

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

at v4.15-rc2 17 lines 438 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __IIO_MAGNETOMETER_AK8975_H__ 3#define __IIO_MAGNETOMETER_AK8975_H__ 4 5#include <linux/iio/iio.h> 6 7/** 8 * struct ak8975_platform_data - AK8975 magnetometer driver platform data 9 * @eoc_gpio: data ready event gpio 10 * @orientation: mounting matrix relative to main hardware 11 */ 12struct ak8975_platform_data { 13 int eoc_gpio; 14 struct iio_mount_matrix orientation; 15}; 16 17#endif