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.0 17 lines 333 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * KXCJK-1013 3-axis accelerometer Interface 4 * Copyright (c) 2014, Intel Corporation. 5 */ 6 7#ifndef __IIO_KXCJK_1013_H__ 8#define __IIO_KXCJK_1013_H__ 9 10#include <linux/iio/iio.h> 11 12struct kxcjk_1013_platform_data { 13 bool active_high_intr; 14 struct iio_mount_matrix orientation; 15}; 16 17#endif